All actions suddenly doesn't work

All my actions have suddenly stopped working. I tried creating a new GPT and create this simple example action:

{
    "openapi": "3.1.0",
    "info": {
        "title": "Get weather data",
        "description": "Retrieves current weather data for a location.",
        "version": "v1.0.0"
    },
    "servers": [
        {
            "url": "https://weather.example.com"
        }
    ],
    "paths": {
        "/location": {
            "get": {
                "description": "Get temperature for a specific location",
                "operationId": "GetCurrentWeather",
                "parameters": [
                    {
                        "name": "location",
                        "in": "query",
                        "description": "The city and state to retrieve the weather for",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "deprecated": false
            }
        }
    },
    "components": {
        "schemas": {}
    }
}

But I get an error in the communication. When asking for the entire error response, it outputs the following:

The error response indicates a ClientResponseError from the aiohttp.client_exceptions class. This type of error typically occurs when there is a problem with the client-side request or server-side response in the HTTP communication process.

Is anyone else having issues with their actions? Is actions down?

I have had the same problem for the first time just today. This problem is not limited to actions created by me, but affects every custom GPT I’ve tried, including those created by others.

Is anyone else experiencing the same problem, and does anyone know if there is a persistent problem with custom GPT actions on the platform? Any insights or updates would be greatly appreciated.

Thanks!!!

I got the same problem. I don’t think that just GPT-4o-mini was impacted due to today outage, but GPT-4o also.

Hey everyone, does anybody has any update concerning this outage? Has it been fixed yet?