gpt-4-turbo
POST
/v1/chat/completions请求参数
Header 参数
Authorization
string
可选
示例值:
{{KEY}}
Body 参数application/json
model
string
必需
messages
array [object {2}]
必需
role
string
可选
content
array [object {3}]
可选
max_tokens
integer
必需
示例
{
"model": "gpt-4-turbo",
"max_tokens": 4096,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "你看到了什么?"
},
{
"type": "image_url",
"image_url": {
"url": "https://images.pexels.com/photos/19845821/pexels-photo-19845821.jpeg"
}
}
]
}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
id
string
必需
object
string
必需
created
integer
必需
model
string
必需
choices
array [object {4}]
必需
index
integer
可选
message
object
可选
logprobs
null
可选
finish_reason
string
可选
usage
object
必需
prompt_tokens
integer
必需
completion_tokens
integer
必需
total_tokens
integer
必需
completion_tokens_details
object
必需
system_fingerprint
string
必需
示例
{
"id": "chatcmpl-A7d078A9xaJ8k2ws34hH9984OfGXw",
"object": "chat.completion",
"created": 1726381579,
"model": "gpt-4-turbo-2024-04-09",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "这张图片显示了三只羊站在草地上,背景是清澈的天空。最前方的一只羊正面对着摄影机,显得特别突出,而另外两只羊则站在它的旁边。这些羊的毛发看起来很长而且蓬松,颜色为白色和深色。整个场景在柔和的晚霞光线下显得平和而美丽。",
"refusal": null
},
"logprobs": null,
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 1120,
"completion_tokens": 136,
"total_tokens": 1256,
"completion_tokens_details": {
"reasoning_tokens": 0
}
},
"system_fingerprint": "fp_9251f45daf"
}
最后修改时间: 6 个月前