curl https://crazyrouter.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "gpt-5.4",
"messages": [
{
"role": "user",
"content": "Use the get_time tool for Asia/Shanghai. Do not answer without calling the tool."
}
],
"tools": [
{
"type": "function",
"function": {
"name": "get_time",
"description": "Get the current time for a timezone",
"parameters": {
"type": "object",
"properties": {
"timezone": { "type": "string" }
},
"required": ["timezone"],
"additionalProperties": false
}
}
}
],
"tool_choice": "required"
}'