aai-embed-react
v3.0.11
Published
React library to display flowise chatbot on your website
Keywords
Readme
Answer AI Embed React
React library to display flowise chatbot on your website

Install
npm install aai-embed aai-embed-reactor
yarn add aai-embed aai-embed-reactImport
Full Page Chat
import { FullPageChat } from 'aai-embed-react'
const App = () => {
return <FullPageChat chatflowid='your-chatflow-id' apiHost='http://localhost:3000' />
}Popup Chat
import { BubbleChat } from 'aai-embed-react'
const App = () => {
return <BubbleChat chatflowid='your-chatflow-id' apiHost='http://localhost:3000' />
}