openai / plugins-quickstart

Get a ChatGPT plugin up and running in under 5 minutes!
https://platform.openai.com/docs/plugins
MIT License
4.25k stars 738 forks source link

Fix JSON Syntax Error in Plugin Manifest #38

Closed ircrp closed 1 year ago

ircrp commented 1 year ago

This pull request addresses a JSON syntax error in the ai-plugin.json file for the ChatGPT plugin.

Removed the trailing comma in the 'api.url' object within the JSON. This change was necessary because JSON does not allow trailing commas, and the presence of one was causing parsing errors.

logankilpatrick commented 1 year ago

Fixed!

360macky commented 1 year ago

Thank you @logankilpatrick!