This page demonstrates the embedded chat widget.
The chat bubble should appear in the bottom-right corner of this page.
Replace YOUR_BOT_ID in the script below with your actual bot ID.
Add this snippet before </body> on any website:
<script>
window.AIChatbotConfig = {
botId: "YOUR_BOT_ID",
themeColor: "#290A4D",
welcomeMessage: "Hi! How can I help you today?",
apiBase: "http://localhost:5000/api"
};
</script>
<script src="widget.js" async></script>