gpthouse-embed-react
v1.0.5
Published
React library to display GptHouse chatbot on your website
Readme
GptHouse Embed React
React library to display GptHouse chatbot on your website
Install
npm install gpthouse-embed-reactor
yarn add gpthouse-embed-reactImport
Full Page Chat
import { FullPageChat } from "gpthouse-embed-react";
const App = () => {
return (
<FullPageChat
chatflowid="your-chatflow-id"
apiHost="http://localhost:3000"
/>
);
};Popup Chat
import { BubbleChat } from "gpthouse-embed-react";
const App = () => {
return (
<BubbleChat chatflowid="your-chatflow-id" apiHost="http://localhost:3000" />
);
};