ChatGPT actions not working

I’m encountering a recurring issue while working with GPT and Actions. Sometimes it works but 90 % of the time ChatGPTs response is:

“It seems the required actions ----------- are not currently configured.”

This is very frustrating!

I am starting first time to use actions now, I am frustrating. I created a simple get api with once parameters, no authentication, using https with signed auth certificate. All very very easy, not work.

Server side I don’t see any call done, seem it doesn’t to try to make the call.

Any help for somebody ?

follow my schema

openapi: 3.1.0
info:
  title: API Clienti
  description: Un'API per ottenere informazioni sui clienti.
  version: 1.0.0
paths:
  /cliente/{codice_cliente}:
    get:
      tags:
        - Cliente
      summary: Ottieni i dati di un cliente
      operationId: getCliente
      parameters:
        - name: codice_cliente
          in: path
          description: Codice univoco del cliente
          required: true
          schema:
            type: string
      responses:
        "200":
          description: Dati del cliente trovati
          content:
            application/json:
              example:
                ragione_sociale: Azienda S.p.A.
                indirizzo: Via Roma 1, Milano, Italia
                telefono: +39 02 12345678
        "404":
          description: Cliente non trovato
          content:
            application/json:
              example:
                errore: Cliente non trovato
servers:
  - url: https://falavps.duckdns.org
    description: Server principale

Your YML looks great in https://editor-next.swagger.io/

Except it can’t resolve your server URL. You might want to check if chatgpt can as well.