✨ AI-Powered Shopping Assistant

Elevate Your E-commerce with Zova

A free, open-source, and fully customizable AI chatbot powered by Gemini. Integrate it into any website in minutes.

Zova Online
Hello! I'm Zova. How can I help you today?
Show me some modern furniture.
I have some great minimalist pieces for you. Check out our new Aura Living collection!
Type a message...

Why Choose Zova?

Powered by Gemini

Leverages the speed and intelligence of Gemini 2.5 Flash Lite for instant, accurate responses.

Fully Customizable

Configure everything from the bot's name and personality to theme colors via a simple JSON file.

Secure & Private

Hide your API keys using Cloudflare Workers. Your data and your customers' privacy are prioritized.

Universal Integration

Works with any website. Just drop the folder, add the script, and you're ready to go.

Integration in 3 Steps

It's easier than you think. View detailed setup guide →

01

Download & Drop

Download the chatbot folder and place it in your website's root directory.

02

Add the Script

Include the following script tag before the closing </body> tag of your HTML.

<script src="chatbot/src/chatbot.js"></script>
03

Configure

Edit chatbot/config.json to match your brand and add your data.

Powerful Configuration

Control every aspect of your bot with config.json.

config.json
{
    "configVersion": "1.0.0",
    "business": {
        "name": "Aura Living",
        "description": "Curated minimalist furniture..."
    },
    "bot": {
        "name": "Zova",
        "role": "AI Shopping Assistant",
        "initialMessage": "Hello! I'm Zova..."
    },
    "theme": {
        "mode": "light",
        "colors": {
            "primaryColor": "#22c55e",
            "primaryGlow": "rgba(34, 197, 94, 0.4)"
        }
    }
}