{
"model": "gpt-5.2",
"input": [
{"role": "user", "content": "你好"}
],
"instructions": "你是一个有用的助手。",
"max_output_tokens": 1000,
"temperature": 0.7,
"top_p": 1.0,
"stream": false,
"tools": [
{
"type": "function",
"name": "get_weather",
"description": "获取天气信息",
"parameters": {
"type": "object",
"properties": {
"location": {"type": "string"}
},
"required": ["location"]
}
}
],
"tool_choice": "auto",
"parallel_tool_calls": true,
"user": "user-123"
}curl --location --request POST 'https://omnirouters.com/v1/responses' \
--header 'Authorization: Bearer sk-xxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gpt-5.2",
"input": [
{"role": "user", "content": "你好"}
],
"instructions": "你是一个有用的助手。",
"max_output_tokens": 1000,
"temperature": 0.7,
"top_p": 1.0,
"stream": false,
"tools": [
{
"type": "function",
"name": "get_weather",
"description": "获取天气信息",
"parameters": {
"type": "object",
"properties": {
"location": {"type": "string"}
},
"required": ["location"]
}
}
],
"tool_choice": "auto",
"parallel_tool_calls": true,
"user": "user-123"
}'{}