You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DocsGPT/extensions/react-widget
Alex 75704899a7
Merge pull request #395 from arc53/dependabot/npm_and_yarn/extensions/react-widget/postcss-8.4.31
Bump postcss from 8.4.29 to 8.4.31 in /extensions/react-widget
9 months ago
..
dist react-widget: fix spelling; `atrribute` 9 months ago
public react-widget 10 months ago
src Correct Sumbit to Submit 9 months ago
README.md widget 0.2.0 10 months ago
index.html react-widget 10 months ago
index.ts react-widget 10 months ago
package-lock.json Bump postcss from 8.4.29 to 8.4.31 in /extensions/react-widget 9 months ago
package.json Bump postcss from 8.4.29 to 8.4.31 in /extensions/react-widget 9 months ago
postcss.config.cjs react-widget 10 months ago
tailwind.config.cjs react-widget 10 months ago
tsconfig.json react-widget 10 months ago
tsconfig.node.json react-widget 10 months ago
vite.config.ts react-widget 10 months ago

README.md

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";
    import "docsgpt/dist/style.css";

    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";
    import "docsgpt/dist/style.css";

    const App = () => {
      return <DocsGPTWidget apiHost="http://localhost:7001" selectDocs='default' apiKey=''/>;
    };

Our github

DocsGPT

You can find the source code in the extensions/react-widget folder.