https://github.com/SawyerHood/create-chat-gpt-plugin
A script that uses GPT to generate a chat-gpt-plugin for you.
https://github.com/SawyerHood/create-chat-gpt-plugin
Last synced: about 1 month ago
JSON representation
A script that uses GPT to generate a chat-gpt-plugin for you.
- Host: GitHub
- URL: https://github.com/SawyerHood/create-chat-gpt-plugin
- Owner: SawyerHood
- Created: 2023-04-09T22:16:57.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-06T23:27:11.000Z (almost 2 years ago)
- Last Synced: 2025-03-02T07:46:45.934Z (about 2 months ago)
- Language: JavaScript
- Size: 597 KB
- Stars: 64
- Watchers: 3
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-chatgpt-plugins - Create ChatGPT Plugin - Script to create a new plugin using Typescript and Express (Tools For Developers)
README
# create-chat-gpt-plugin
> What is this?
This is a script that uses GPT to generate a chat-gpt-plugin using node, typescript, and express for you. It generates an `index.ts` file, an `ai-plugin.json` file, and an `openapi.yaml` file for you. It has a pretty good chance of being able to create a working ChatGPT plugin for simple well documented apis off the bat.
To get started run:
```bash
npx create-chat-gpt-plugin@latest
```You will be prompted for a name, wether to use gpt-4 or gpt-3.5 to generate the plugin, and a short description (a.k.a. the prompt) that the LLM will use to generate the ChatGPT plugin.
The set up directory is relative to your current working directory. From there you will have to wait a minute
or so for Open to work its magic. Once it is done cd into the directory and run `npm run start`and it should work.