Welcome to the AI Chatbot package! This package allows you to integrate an intelligent chatbot into your web application easily.
- AI-driven chatbot that interacts with users
- Easy integration with modern TypeScript frameworks
- Built-in support for conversation history
- AI Chatbot package is MIT licensed.
npm install ait-albert-chatbot
or
yarn add ait-albert-chatbot
import { Chatbot } from 'ait-albert-chatbot';
import 'ait-albert-chatbot/dist/index.css';
export const App = () => (
<div>
<Chatbot />
...
</div>
);