UNPKG

react-ai-ragbot

Version:

React component library that provides plug-and-play AI chat and voice assistant UIs. Designed to work seamlessly with the node-ragbot backend, it enables developers to quickly add an OpenAI-powered conversational experience to any website or app. Features

11 lines (10 loc) 252 B
interface ChatBotProps { backendUrl: string; darkMode?: boolean; title?: string; displayMode?: "float" | "popup"; buttonText?: string; className?: string; } declare const ChatBot: React.FC<ChatBotProps>; export default ChatBot;