Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/breadchris/chatgpt-plugin-examples
Code examples from the ChatGPT plugin documentation.
https://github.com/breadchris/chatgpt-plugin-examples
Last synced: about 1 month ago
JSON representation
Code examples from the ChatGPT plugin documentation.
- Host: GitHub
- URL: https://github.com/breadchris/chatgpt-plugin-examples
- Owner: breadchris
- License: mit
- Created: 2023-03-24T21:55:34.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-04-09T23:08:18.000Z (over 1 year ago)
- Last Synced: 2024-08-02T06:01:40.910Z (5 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 56
- Watchers: 3
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-chatgpt-plugins - ChatGPT Plugin Examples - Code examples from the ChatGPT plugin documentation. (Developer / note: for unverified plugins, please enter website domains)
README
# ChatGPT Plugin Examples
This repository contains examples of ChatGPT plugins that demonstrate how to build and deploy plugins on the OpenAI platform. The examples were taken from the [OpenAI Platform documentation](https://platform.openai.com/docs/plugins/examples) and have been added to this repository to make it easier to read and use.Each example includes a Dockerfile to help with deployment of the plugin. You can use the Dockerfile to build and run the plugin locally or deploy it to a remote server.
## Quick Start
```
git clone https://github.com/breadchris/chatgpt-plugin-examples.git
cd chatgpt-plugin-examples/simple-todo-no-auth
python -m venv env
. env/bin/activate
pip install -r requirements.txt
python serve.py
```## Examples
Each example is contained in its own directory with its own README.md file. The README.md file provides instructions on how to build and run the plugin using the Dockerfile.- [Simple todo list plugin with no auth](simple-todo-no-auth/)
- [Simple todo list plugin with service level auth](simple-todo-service-auth/)
- [Simple sports stats plugin](sports-stats-plugin/)
- Semantic search and retrieval plugin (contained in its [own repo](https://github.com/openai/chatgpt-retrieval-plugin))## Contributing
If you have a new example that you would like to contribute, please fork this repository and submit a pull request with your changes. We welcome contributions from the community!## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.