Loading video...

Video Failed to Load

Go Home

Using #ChatGPT to easily create ChatGPT plugins 🔥 #OpenAI #GPT4 #AI #python #fastapi A ChatGPT plugin consists of 3 things: 1. An HTTP server 2. An OpenAPI spec 3. A manifest file Steps to create a plugin from OpenAI's tutorial 👇

227,926 views • 3 years ago •via X (Twitter)

11 Comments

Rohan's profile picture
Rohan3 years ago

1. First create the API server using ChatGPT - tell ChatGPT your requirements - and also which library to create the server (FastAPI in this case)

Rohan's profile picture
Rohan3 years ago

2. Then create the plugin manifest. A Plugin manifest is a json file with: - simple metadata about the plugin - tells how to show the plugin to a human - also how to describe it to the language model

Rohan's profile picture
Rohan3 years ago

3. Then deploy the server and manifest json file. 4. After deploying the plugin server, add the plugin to ChatGPT - Provide the domain where the plugin is hosted - Provide auth token if needed

Rohan's profile picture
Rohan3 years ago

5. Finally, test the plugin by installing it as an user Thanks for reading. I write about AI, CloudNative, Kubernetes, System Design etc. and try to make complex topics as easy as possible. Stay tuned for more. #ChatGPT #OpenAI #GPT4 #AI #python #fastapi

Rohan's profile picture
Rohan3 years ago

Learn how to create chrome extensions using ChatGPT. Full guide with prompts.

Rohan's profile picture
Rohan3 years ago

Use these new #AI tools if you don't wanna be left behind in these new era of generative AI

Rohan's profile picture
Rohan3 years ago

Check out this amazing GPT-4 powered extension that does repetitive tasks on your behalf from your one-line prompts 🚀

Batman369's profile picture
Batman3693 years ago

That’s very informative, thanks

Rohan's profile picture
Rohan3 years ago

You're welcome. Glad to help.

Amber J's profile picture
Amber J3 years ago

if the http is graphQL, would your llm functions be mutations? the writes are memory stored sequentially for new states or meta/master data management

Rohan's profile picture
Rohan3 years ago

ChatGPT plugins require the server to be a REST API server that follows the OpenAPI standards. So graphQL ain't supported.

Related Videos