1.0.1 • Published 8 months ago

flowise-embed-react-oc v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

Flowise Embed React OC

React library to display flowise chatbot on your website

Flowise

Install

npm install flowise-embed-oc flowise-embed-react-oc

or

yarn add flowise-embed-oc flowise-embed-react-oc

Import

Full Page Chat

import { FullPageChat } from "flowise-embed-react-oc";

const App = () => {
  return (
    <FullPageChat
      chatflowid="your-chatflow-id"
      apiHost="http://localhost:3000"
    />
  );
};

Popup Chat

import { BubbleChat } from "flowise-embed-react-oc";

const App = () => {
  return (
    <BubbleChat chatflowid="your-chatflow-id" apiHost="http://localhost:3000" />
  );
};
1.0.1

8 months ago

1.0.0

8 months ago