0.2.0 • Published 12 months ago
@ibti-tech/chatbot v0.2.0
IBTI Chatbot
IBTI Chatbot is an assistent designed to provide intelligent responses and assist users effectively according to ibti available data from website and blog.
How to use on your project
- 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>
)
}