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
ClientResponseErrorfrom theaiohttp.client_exceptionsclass. 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?