Flowise/packages/embed-react/README.md

712 B

Answer AI Embed React

React library to display flowise chatbot on your website

Flowise

Install

npm install aai-embed aai-embed-react

or

yarn add aai-embed aai-embed-react

Import

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' />
}