Experience our intelligent chatbot widget that can be easily integrated into any website. Try clicking the chat icon in the bottom right corner!
Just add a single script tag to your website and configure your API key. The widget automatically adapts to your site's content and branding.
Powered by advanced AI models with context awareness. Understands your website content and provides relevant, helpful responses.
Looks great on all devices. The widget automatically adjusts for mobile, tablet, and desktop screens.
<!-- Add this script before closing </body> tag -->
<script>
(function() {
window.AIChatbotConfig = {
apiKey: 'your-api-key-here',
sessionId: 'your-session-id',
apiEndpoint: 'http://localhost:8000',
botName: 'AI Assistant',
welcomeMessage: 'Hi! How can I help you today?',
position: 'bottom-right', // bottom-right, bottom-left
primaryColor: '#667eea',
autoOpen: false,
showPoweredBy: true
};
var script = document.createElement('script');
script.src = 'https://your-domain.com/chatbot-widget.js';
document.head.appendChild(script);
})();
</script>