curl -X POST "https://{BASE_URL}/api/gpt/v1/messages/validate" \
-H "Authorization: Bearer {API_TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"model": "default",
"max_tokens": 64,
"messages": [
{ "role": "user", "content": "Add 5 and 7." }
],
"tools": [
{
"name": "simple_calculator",
"description": "Add two numbers.",
"inputSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"a": { "type": "number" },
"b": { "type": "number" }
},
"required": ["a", "b"]
}
}
],
"tool_choice": { "type": "tool", "name": "simple_calculator" }
}'