Actions seem to be broken in the Custom GPT builder.
I initially noticed this with my custom GPT. I was attempting to add another action to my .yml, but every single time the action was failing. It was not even calling my API at all (aka it failed before it even hit my API).
I think created a basic test GPT that hits a cat facts endpoint. Here is my actions YML:
openapi: 3.0.0
info:
title: Cat Facts API
version: "1.0"
servers:
- url: https://catfact.ninja/
description: Main (production) server
paths:
/fact:
get:
tags:
- Facts
summary: Get Random Fact
description: Returns a random fact
operationId: getRandomFact
parameters:
- name: max_length
in: query
description: maximum length of returned fact
required: false
schema:
type: integer
format: int64
responses:
"200":
description: successful operation
content:
application/json:
fact:
type: string
"404":
description: Fact not found
Is anyone else running into this or have any tips on how to debug this? Very little information is exposed when testing it and things go wrong making for a frustrating developer experience.