@cagent/chat-embedding-react
v0.0.2
Published
React library to display c-agent chatbot on your website
Readme
C-Agent Embed React
React library to display c-agent chatbot on your website
Install
npm install @cagent/chat-embedding-core @cagent/chat-embedding-reactor
bun add @cagent/chat-embedding-core @cagent/chat-embedding-reactImport
Full Page Chat
import { FullPageChat } from "@cagent/chat-embedding-react";
const App = () => {
return (
<FullPageChat
chatflowid="your-chatflow-id"
apiHost="http://localhost:3000"
/>
);
};Popup Chat
import { BubbleChat } from "@cagent/chat-embedding-react";
const App = () => {
return (
<BubbleChat chatflowid="your-chatflow-id" apiHost="http://localhost:3000" />
);
};