I’m trying to use the following openapi spec to connect intercom and build a custom gpt:
As soon as I paste this, i get the error:
Something went wrong. If this issue persists please contact us through our help center at help.openai.com.
If you remove teh ‘/articles’ endpoint and related components, it works. A limitation i guess?
Sounds like it. OpenAI only support a subset of OpenAPI right now. In my experience it only seems to need the pathname, operation ID, and request/response formats—anything else like tags
, securitySchemes
, etc, seems to be ignored or unsupported. Try removing fields underneath the /articles
endpoint (or incrementally re-creating it from scratch) and see what works!
1 Like