tybot-ai-widget
v0.0.3
Published
A modern, customizable React widget for Tybot chat integration.
Readme
Tybot Widget SDK
A modern, customizable React widget for Tybot chat integration.
Installation
npm install tybot-widgetUsage
in react
import { createTybotWidget } from "tybot-widget";
useEffect(() => {
createTybotWidget({
bot: { botId: "your-bot-id", name: "My Bot" },
mainColor: "#FF0000",
// ...other config options
});
}, []);with script tag
<script src="https://unpkg.com/tybot-widget/dist/index.umd.js"></script>
<script>
TybotWidget.createTybotWidget({
bot: { botId: "your-bot-id", name: "My Bot" },
mainColor: "#FF0000",
// ...other config options
});
</script>Props
See dist/index.d.ts for all available configuration options.
