mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 08:33:20 +00:00
721 B
721 B
DocsGPT react widget
This widget will allow you to embed a DocsGPT assistant in your React app.
Installation
npm install docsgpt
Usage
import { DocsGPTWidget } from "docsgpt";
const App = () => {
return <DocsGPTWidget />;
};
To link the widget to your api and your documents you can pass parameters to the component.
import { DocsGPTWidget } from "docsgpt";
const App = () => {
return <DocsGPTWidget apiHost="http://localhost:7001" selectDocs='default' apiKey=''/>;
};
Our github
You can find the source code in the extensions/react-widget folder.