intellinum-chatbot
v1.1.1
Published
intellinum AI chatbot library
Downloads
1,092
Readme
intellinum-chatbot
Library chatbot sederhana untuk integrasi ke web app.
Install
npm install intellinum-chatbotHow to use
You can adjust the styling with your own.import { ChatStreamProvider, ChattingStream } from "intellinum-chatbot";
import "intellinum-chatbot/intellinum-chatbot.css";
export default function Home() {
return (
<div className="w-full">
<ChatStreamProvider
STREAM_URL="Your stream url"
PROXY_URL="your proxy url"
TOKEN="your token"
>
<div className="w-full h-screen bg-slate-200 flex gap-4 ">
<div className="p-2 h-screen w-full ">
<ChattingStream
onResponseChat={(output) => {
console.log("output", output);
}}
/>
</div>
</div>
</ChatStreamProvider>
</div>
);
}