Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openai/plugins-quickstart
Get a ChatGPT plugin up and running in under 5 minutes!
https://github.com/openai/plugins-quickstart
chatgpt chatgpt-plugins
Last synced: 2 days ago
JSON representation
Get a ChatGPT plugin up and running in under 5 minutes!
- Host: GitHub
- URL: https://github.com/openai/plugins-quickstart
- Owner: openai
- License: mit
- Created: 2023-04-06T13:43:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-30T23:23:11.000Z (12 months ago)
- Last Synced: 2025-01-09T23:04:05.718Z (9 days ago)
- Topics: chatgpt, chatgpt-plugins
- Language: Python
- Homepage: https://platform.openai.com/docs/plugins
- Size: 9.77 KB
- Stars: 4,242
- Watchers: 57
- Forks: 734
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-chatgpt-plugins - Plugin Quickstart Repository - Official quickstart repository in python (Official Resources)
- awesome-ccamel - openai/plugins-quickstart - Get a ChatGPT plugin up and running in under 5 minutes! (Python)
- awesome-ChatGPT-repositories - plugins-quickstart - Get a ChatGPT plugin up and running in under 5 minutes! (Browser-extensions)
- StarryDivineSky - openai/plugins-quickstart
- awesome-chatgpt - openai/plugins-quickstart - Get a ChatGPT plugin up and running in under 5 minutes! (SDK, Libraries, Frameworks / ChatGPT plugins)
- jimsghstars - openai/plugins-quickstart - Get a ChatGPT plugin up and running in under 5 minutes! (Python)
- AiTreasureBox - openai/plugins-quickstart - 01-13_4242_0](https://img.shields.io/github/stars/openai/plugins-quickstart.svg) |Get a ChatGPT plugin up and running in under 5 minutes!| (Repos)
README
# ChatGPT plugins quickstart
Get a TODO list ChatGPT plugin up and running in under 5 minutes using Python. This plugin is designed to work in conjunction with the [ChatGPT plugins documentation](https://platform.openai.com/docs/plugins). Plugins have been superseded by GPTs, learn more about [creating a GPT with actions](https://platform.openai.com/docs/actions/introduction).
## Setup locally
To install the required packages for this plugin, run the following command:
```bash
pip install -r requirements.txt
```To run the plugin, enter the following command:
```bash
python main.py
```Once the local server is running:
1. Navigate to https://chat.openai.com.
2. In the Model drop down, select "Plugins" (note, if you don't see it there, you don't have access yet).
3. Select "Plugin store"
4. Select "Develop your own plugin"
5. Enter in `localhost:5003` since this is the URL the server is running on locally, then select "Find manifest file".The plugin should now be installed and enabled! You can start with a question like "What is on my todo list" and then try adding something to it as well!
## Getting help
If you run into issues or have questions building a plugin, please join our [Developer community forum](https://community.openai.com/c/chat-plugins/20).