@enfuse/chatgpt-plugin-frontend
v1.1.1
Published
The Enfuse ChatGPT Plugin for Backstage takes user-inputted description of a desired file of any format and returns the file.
Downloads
320
Readme
Enfuse ChatGPT Plugin for Backstage
The Enfuse ChatGPT Plugin for Backstage takes user-inputted description of a desired file of any format and returns the file.
The more descriptive the prompt, the better the response! Note that the response will require additional time the larger the prompt, but the response's quality will increase.
Features
- Temperature: Temperature will determine how creative the response will be, with a lower temperature returning a more focused and conservative output. A higher temperature will return a more creative response, but has the potential to be less coherent.
- Max Tokens: Determines the length of the input + output.
Requirements
Installation
Navigate to root of Backstage installation and run
# From root directory of your Backstage installation
yarn add --cwd packages/app @enfuse/chatgpt-plugin-frontend
- Navigate to your packages/app/src/App.tsx and include the following
import { ChatGPTFrontendPage } from '@enfuse/chatgpt-plugin-frontend';
....
<FlatRoutes>
....
<Route path="/chatgpt" element={<ChatGPTFrontendPage />} />
</FlatRoutes>