Hello,
In OpenAI Plugins document it says
There are also many tools that will automatically turn your server definition code into an OpenAPI specification so you don’t need to do it manually.
Just wondering which one we should use ? Any recommendations ? Thanks
Easiest, is because I’m using FastAPI which would generate OpenAPI specs based on your APIs without any additional inputs.
http://localhost:3000/redoc
This will give you a json, then go to json2yaml.com to convert that json to yaml and that’s pretty much it.
The hard working been done and you would only to tweak the yaml files with proper description, etc
1 Like
Thanks @ksaid.79, will try that