Chat(o1系列)
POST
/chat/completions支持o1-mini和o1-preview
注意,支持设定temperature, top_p, n, presence_penalty, frequency_penalty。我们在服务端做了兼容,传这些参数无效。
Token计算方式:
输入:prompt_tokens
输出:completion_tokens+reasoning_tokens
此范例是为了展示如何使用gpt-4o模型分析图片。
聊天模型接受一系列消息作为输入,然后返回模型生成的消息作为输出。尽管聊天格式是为了让多轮对话变得简单而设计的,但它对于没有任何对话的单轮任务也同样有用。
请求参数
Header 参数
Content-Type
string
必需
示例值:
application/json
Accept
string
必需
示例值:
application/json
Authorization
string
可选
示例值:
Bearer {{YOUR_API_KEY}}
Body 参数application/json
示例
{
"model": "o1-mini",
"stream": false,
"messages": [
{
"role": "user",
"content": "hello"
}
]
}
示例代码
返回响应
OK(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
id
string
必需
object
string
必需
created
integer
必需
choices
array [object {3}]
必需
index
integer
可选
message
object
可选
finish_reason
string
可选
usage
object
必需
prompt_tokens
integer
必需
completion_tokens
integer
必需
total_tokens
integer
必需
示例OK
{
"id": "chatcmpl-123",
"object": "chat.completion",
"created": 1677652288,
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "\n\nHello there, how may I assist you today?"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 9,
"completion_tokens": 12,
"total_tokens": 21
}
}
最后修改时间: 2 小时前