Add your chatbot to your website
Copy the code and paste it before the closing </body> tag.
1
2
3
<link rel="stylesheet" href="https://embeddable-widgets.pages.dev/chat-widget.css" />
<script>
const s = document.createElement('script');
s.src = 'https://embeddable-widgets.pages.dev/chat-widget.umd.js';
s.onload = () => {
window?.ChatWidget?.initChatWidget &&
window.ChatWidget.initChatWidget({ agentId: '47d6a1e1-d8d9-48b3-a223-e553f90aa72c' });
};
s.onerror = (e) => console.error('Failed to load chat widget:', e);
document.head.appendChild(s);
</script>Live preview
Changes reflect after saving configuration.