OK - here’s the test from the published version:
Weather Test GPT
Me
Invoke the weather.example.com action
Weather Test GPT
Now - here’s the Configuration
Name: Weather Test GPT
Description: Invokes the Weather example action
Instructions: Just invoke the weather.example.com action
Conversation starters: Invoke the weather.example.com action
Actions: weather.example.com
Authentication: None
Schema (straight from Weather (JSON) Example)
{
"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": {}
}
}
This would be a pretty serious bug, or are we all missing something? Hoping OpenAI can help
Finally, here’s the Preview when I click Test
Me
Call the weather.example.com API with the GetCurrentWeather operation
Weather Test GPT
[debug] Calling HTTP endpoint
{
"domain": "weather.example.com",
"method": "get",
"path": "/location",
"operation": "GetCurrentWeather",
"operation_hash": "5bdb6b5aaf8d3125da7b98633e18049c57c2febf",
"is_consequential": false,
"params": {
"location": "San Francisco, CA"
}
}
[debug] Response received
{}
Error talking to
It seems there was an error while attempting to retrieve the weather data for San Francisco, CA. If you have another location in mind or wish to try again later, please let me know.
Link to that GPT
Not sure if it works, but Weather Test