A simple, lightweight chatbot client built with the Svelte JavaScript framework. Easily embeddable on any website.
<script id="ibentau-chatbot-script" async type="module" crossorigin
src="https://cdn.jsdelivr.net/gh/Ibentau/front-client@main/dist/ibentau.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Ibentau/front-client@main/dist/style.css">
<script>
document.querySelector('#ibentau-chatbot-script').addEventListener('load', function() {
new ChatBot({
target: document.body,
props: {
botName: 'ViteBot',
endpoint: 'https://api.ibentau.com/chat',
botAvatar: 'https://cdn.ibentau.com/images/vitebot.png',
mainColor: "#00bfa5",
footer: 'Disclaimer: All responses are generated by a machine learning model. Find out more at <a href="https://ibentau.com">ibentau.com</a>'
},
});
});
</script>
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.