Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.51 KB

README.md

File metadata and controls

28 lines (22 loc) · 1.51 KB

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

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 file for details.