1.1.1 • Published 9 months ago

@enfuse/chatgpt-plugin-frontend v1.1.1

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
9 months ago

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.

ChatGPT Playground

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

  1. A Backstage application instance
  2. The backend part of this plugin installed.

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
  1. 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>