We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi I wanted to add a function inside the custom gpt, for some reason it gave me an error mesage.
This is the function i wanted to include :
{ "openapi": "3.1.0", "info": { "title": "BoardApp Dashboard API", "version": "1.0.0", "description": "API specification for retrieving dashboard data from BoardApp" }, "servers": [ { "url": "https://boardapp.nl" } ], "paths": { "/dashboards/bol.json": { "get": { "operationId": "getBolData", "summary": "Retrieve dashboard data", "description": "Get the dashboard data for BoardApp", "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "type": { "type": "string" }, "data": { "type": "object" } } } } } } } } } } } } } }
Maybe you guys no how to rewrite so that it can chat with it
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi I wanted to add a function inside the custom gpt, for some reason it gave me an error mesage.
This is the function i wanted to include :
{
"openapi": "3.1.0",
"info": {
"title": "BoardApp Dashboard API",
"version": "1.0.0",
"description": "API specification for retrieving dashboard data from BoardApp"
},
"servers": [
{
"url": "https://boardapp.nl"
}
],
"paths": {
"/dashboards/bol.json": {
"get": {
"operationId": "getBolData",
"summary": "Retrieve dashboard data",
"description": "Get the dashboard data for BoardApp",
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"data": {
"type": "object"
}
}
}
}
}
}
}
}
}
}
}
}
}
}
Maybe you guys no how to rewrite so that it can chat with it
The text was updated successfully, but these errors were encountered: