IBTI Chatbot is an assistent designed to provide intelligent responses and assist users effectively according to ibti available data from website and blog.
- Install using yarn or npm
yarn add @ibti-tech/chatbot | npm install @ibti-tech/chatbot
- Import Chatbot component into your react application and use it as a component
import { Chatbot } from '@ibti-tech/chatbot'
- Use the component
// {...}
const MyFunctionalComponent = () => {
return (
<div>
<ChatbotProvider
locale="pt-BR"
apiURL="http://localhost:6061"
theme="dark"
>
<ChatbotBar />
</ChatbotProvider>
</div>
)
}