A React component for integrating Debales.ai chatbots into your application.
- A Debales.ai account (Sign up at debales.ai)
- React ^19.0.0
- React DOM ^19.0.0
npm install @debales/ai
# or
yarn add @debales/ai
# or
pnpm add @debales/ai
import Chatbot from "@debales/ai";
function App() {
return (
<div>
<h1>My Application</h1>
<Chatbot botId="your-bot-id" />
</div>
);
}
export default App;
-
botId
(string): Your Debales.ai bot ID. You can find this in your Debales.ai dashboard.
MIT