I am having a hell of a time with this too. I tried everything here with no success. I am watching my server logs in real time and even though it says it is trying to contact my server, it never does. Nothing in error or access logs.
When I had this issue I fixed it by giving the chatbot instructions
“when accessing [operationid] always use the apiKey [your key]”
Also, it is a good idea to have a limit parameter on your api because chatgpt will return an error if the response is too large, but I dont what “too large” is for it.
I think i have similar problem
I have tried, but basically is makes what chatGPT can, and chatGPT has no clue about custom GPTs, bcoz of cutoff date April 2023. Well, whole context might be explained with some plugins, but it does not work. Here is my problem: UnrecognizedKwargsError error raised by GPTs Let’s talk directly.
As you have selected a solution can we close this topic?
I know others have added on after the solution was selected but they should have started a new topic.
If this is closed they can request that their post be moved to a new topic but will have to use a direct message as this will be closed.
Here is a custom json schema that works for mutiple function calls
{
“openapi”: “3.1.0”,
“info”: {
“title”: “Prometheus Oracle API”,
“description”: “API for various Prometheus Oracle functionalities.”,
“version”: “v1.0.0”
},
“servers”: [
{
“url”: “https://xxx.com”
}
],
“paths”: {
“/prometheus/api/v3/oracle/sms”: {
“post”: {
“description”: “Send SMS to a specific number”,
“operationId”: “SendSMS”,
“requestBody”: {
“description”: “Data for sending an SMS”,
“required”: true,
“content”: {
“application/json”: {
“schema”: {
“type”: “object”,
“properties”: {
“number”: {
“type”: “string”,
“description”: “The phone number to send the SMS to”,
“example”: “+254797584194”
},
“message”: {
“type”: “string”,
“description”: “The SMS message content”,
“example”: “Hello, this is a test message from Prometheus Oracle.”
}
},
“required”: [“number”, “message”]
}
}
}
},
“responses”: {
“200”: {
“description”: “SMS sent successfully”
},
“400”: {
“description”: “Bad request”
},
“403”: {
“description”: “Forbidden - Requests from proxy servers are not allowed”
}
}
}
},
“/prometheus/api/v3/oracle/checkaccountbalance”: {
“post”: {
“description”: “Check account balance”,
“operationId”: “CheckAccountBalance”,
“responses”: {
“200”: {
“description”: “Account balance retrieved successfully”
},
“400”: {
“description”: “Bad request”
},
“403”: {
“description”: “Forbidden - Requests from proxy servers are not allowed”
}
}
}
}
},
“components”: {
“schemas”: {}
}
}
There is no option to close the topic. Just a message that this topic has been solved
Thanks.
I knew that this site most likely did not give you that option, thus the we in the request.
I will take this reply as indication we can close the topic, meaning I will close the topic as I am a category moderator.
If that is not want you want or in the future need this opened up to add to just ask any category moderator here.
Thanks.