{
"model": "gpt-4.1",
"input": "Compare the weather in Rome with the current time in Tokyo.",
"parallel_tool_calls": true,
"tools": [
{
"type": "function",
"name": "get_weather",
"description": "Get current weather for a city.",
"parameters": {
"type": "object",
"properties": { "city": { "type": "string" } },
"required": ["city"]
}
},
{
"type": "function",
"name": "get_time",
"description": "Get the current time in a city.",
"parameters": {
"type": "object",
"properties": { "city": { "type": "string" } },
"required": ["city"]
}
}
]
}