A free, open-source, and fully customizable AI chatbot powered by Gemini. Integrate it into any website in minutes.
Leverages the speed and intelligence of Gemini 2.5 Flash Lite for instant, accurate responses.
Configure everything from the bot's name and personality to theme colors via a simple JSON file.
Hide your API keys using Cloudflare Workers. Your data and your customers' privacy are prioritized.
Works with any website. Just drop the folder, add the script, and you're ready to go.
It's easier than you think. View detailed setup guide →
Download the chatbot folder and place it in your website's root directory.
Include the following script tag before the closing </body> tag of your HTML.
<script src="chatbot/src/chatbot.js"></script>
Edit chatbot/config.json to match your brand and add your data.
Control every aspect of your bot with 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)"
}
}
}