Create Function Calling Copy
https://platform.openai.com/docs/api-reference/responses/create 部分OpenAImodels仅支持Response格式, 例如o3-pro, codex-mini-latest
Endpoint
POST http://v98store.com/v1/responses cURL Command
curl -X POST 'http://v98store.com/v1/responses' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{ "input": [ { "role": "user", "content": "请同is帮我做followingseveral件事: \n1. 获取when前系统isbetween\n2. 查see 系统信息 (操作系统, 内存 etc)\n3. 帮我计算 123.5 + 456.7 结果\n4. 生成3 1-100之between 随机数\n\nthisYes一 并行工具调用测试, 请同is执行this些任务. " } ], "metadata": { "model_id": "32" }, "model": "gpt-4.1", "tool_choice": "auto", "tools": [ { "type": "function", "name": "random_generator", "description": "生成指定范围内 随机数, 支持批量生成", "parameters": { "type": "object", "properties": { "min": { "description": "most小值 (默认1)", "type": "integer" }, "max": { "description": "most大值 (默认100)", "type": "integer" }, "count": { "description": "生成数量 (默认1, most大10)", "type": "integer" } } } }, { "type": "function", "name": "system_info", "description": "获取when前系统 基本信息, 包括操作系统, Java版本, 内存enabling用情况 etc", "parameters": { "type": "object", "properties": {} } }, { "type": "function", "name": "math_calculator", "description": "执行基本数学运算, 支持加减乘除 and 幂运算", "parameters": { "type": "object", "properties": { "a": { "description": "第一���数字", "type": "number" }, "b": { "description": "第二 数字", "type": "number" }, "operation": { "description": "运算类型: add, subtract, multiply, divide, power", "type": "string" } }, "required": [ "operation", "a", "b" ] } }, { "type": "function", "name": "current_time", "description": "获取when前系统isbetween", "parameters": { "type": "object", "properties": {} } } ] }' Parameters
| Name | In | Description | Required |
|---|---|---|---|
| Content-Type | header | Yes | |
| Accept | header | Yes | |
| Authorization | header | No |
Request Body
Example
{
"input": [
{
"role": "user",
"content": "请同is帮我做followingseveral件事: \n1. 获取when前系统isbetween\n2. 查see 系统信息 (操作系统, 内存 etc)\n3. 帮我计算 123.5 + 456.7 结果\n4. 生成3 1-100之between 随机数\n\nthisYes一 并行工具调用测试, 请同is执行this些任务. "
}
],
"metadata": {
"model_id": "32"
},
"model": "gpt-4.1",
"tool_choice": "auto",
"tools": [
{
"type": "function",
"name": "random_generator",
"description": "生成指定范围内 随机数, 支持批量生成",
"parameters": {
"type": "object",
"properties": {
"min": {
"description": "most小值 (默认1)",
"type": "integer"
},
"max": {
"description": "most大值 (默认100)",
"type": "integer"
},
"count": {
"description": "生成数量 (默认1, most大10)",
"type": "integer"
}
}
}
},
{
"type": "function",
"name": "system_info",
"description": "获取when前系统 基本信息, 包括操作系统, Java版本, 内存enabling用情况 etc",
"parameters": {
"type": "object",
"properties": {}
}
},
{
"type": "function",
"name": "math_calculator",
"description": "执行基本数学运算, 支持加减乘除 and 幂运算",
"parameters": {
"type": "object",
"properties": {
"a": {
"description": "第一���数字",
"type": "number"
},
"b": {
"description": "第二 数字",
"type": "number"
},
"operation": {
"description": "运算类型: add, subtract, multiply, divide, power",
"type": "string"
}
},
"required": [
"operation",
"a",
"b"
]
}
},
{
"type": "function",
"name": "current_time",
"description": "获取when前系统isbetween",
"parameters": {
"type": "object",
"properties": {}
}
}
]
} Responses
200 -
Example
{
"id": "resp_68ac1558e9488190bcc2cbb94c7d7a140b8064b15a091a77",
"object": "response",
"created_at": 1756108120,
"status": "completed",
"background": false,
"content_filters": null,
"error": null,
"incomplete_details": null,
"instructions": null,
"max_output_tokens": null,
"max_tool_calls": null,
"model": "gpt-4.1-data",
"output": [
{
"id": "fc_68ac15594be88190a58217f75a6a54cc0b8064b15a091a77",
"type": "function_call",
"status": "completed",
"arguments": "{\"sign\":\"Aquarius\"}",
"call_id": "call_6kbB2GTk62PPUNdGuBJPx9KQ",
"name": "get_horoscope"
}
],
"parallel_tool_calls": true,
"previous_response_id": null,
"prompt_cache_key": null,
"reasoning": {
"effort": null,
"summary": null
},
"safety_identifier": null,
"service_tier": "default",
"store": true,
"temperature": 1,
"text": {
"format": {
"type": "text"
}
},
"tool_choice": "auto",
"tools": [
{
"type": "function",
"description": "Get today's horoscope for an astrological sign.",
"name": "get_horoscope",
"parameters": {
"properties": {
"sign": {
"description": "An astrological sign like Taurus or Aquarius",
"type": "string"
}
},
"required": [
"sign"
],
"type": "object"
},
"strict": true
}
],
"top_p": 1,
"truncation": "disabled",
"usage": {
"input_tokens": 62,
"input_tokens_details": {
"cached_tokens": 0
},
"output_tokens": 18,
"output_tokens_details": {
"reasoning_tokens": 0
},
"total_tokens": 80
},
"user": null,
"metadata": {}
}