Skip to content

Commit

Permalink
fix: Functioncall is actually a bit different than the deprecated fun…
Browse files Browse the repository at this point in the history
…ction definition type
  • Loading branch information
Trofleb committed Feb 4, 2025
1 parent 45d3a3a commit cfc6cbc
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1527,6 +1527,23 @@
}
}
},
"FunctionDefinitionDeprecated": {
"type": "object",
"required": [
"name",
"arguments"
],
"properties": {
"arguments": {},
"description": {
"type": "string",
"nullable": true
},
"name": {
"type": "string"
}
}
},
"FunctionDefinition": {
"type": "object",
"required": [
Expand Down Expand Up @@ -2251,7 +2268,7 @@
"$ref": "#/components/schemas/FunctionDefinition"
},
{
"$ref": "#/components/schemas/FunctionCall"
"$ref": "#/components/schemas/FunctionDefinitionDeprecated"
}
]
},
Expand Down

0 comments on commit cfc6cbc

Please sign in to comment.