{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ToolCallFunction",
"title": "ToolCallFunction",
"type": "object",
"properties": {
"arguments": {
"type": "string",
"description": "This is the arguments to call the function with"
},
"name": {
"type": "string",
"description": "This is the name of the function to call",
"maxLength": 80
}
},
"required": [
"arguments",
"name"
]
}