o1-mini
POST
/v1/chat/completions请求参数
Header 参数
Authorization
string
可选
示例值:
{{KEY}}
Body 参数application/json
model
string
必需
messages
array [object {2}]
必需
role
string
可选
content
string
可选
示例
{
"model": "o1-mini",
"messages": [
{
"role": "user",
"content": "say 1"
}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
id
string
必需
object
string
必需
created
integer
必需
model
string
必需
choices
array [object {3}]
必需
index
integer
可选
message
object
可选
finish_reason
string
可选
usage
object
必需
prompt_tokens
integer
必需
completion_tokens
integer
必需
total_tokens
integer
必需
completion_tokens_details
object
必需
system_fingerprint
string
必需
示例
{
"id": "chatcmpl-A7czb7Karpftlu9gzMKwCSuQ0b3Ic",
"object": "chat.completion",
"created": 1726381547,
"model": "o1-mini-2024-09-12",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "1",
"refusal": null
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 11,
"completion_tokens": 141,
"total_tokens": 152,
"completion_tokens_details": {
"reasoning_tokens": 128
}
},
"system_fingerprint": "fp_3cae7da8eb"
}
最后修改时间: 3 个月前