Follow these simple steps to add the AI assistant to your React application
Install the @debales-ai/ai-assistant
package using npm, yarn, or pnpm:
You also need to install the peer dependency styled-components
:
Import the Chatbot
component and add it to your application with your unique bot ID:
import { Chatbot } from '@debales-ai/ai-assistant'; export default function App() { return ( <div className="App"> <Chatbot botId='your-bot-id' /> </div> ); }