gpt-3.5-turbo
POST
/v1/chat/completions请求参数
Header 参数
Authorization
string
可选
示例值:
{{KEY}}
Body 参数application/json
model
string
必需
response_format
object
必需
type
string
必需
messages
array [object {2}]
必需
role
string
必需
content
string
必需
示例
{
"model": "gpt-3.5-turbo",
"response_format": {
"type": "json_object"
},
"messages": [
{
"role": "system",
"content": "You are a helpful assistant designed to output JSON."
},
{
"role": "user",
"content": "Who won the world series in 2020?"
}
]
}
示例代码
返回响应
成功(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
必需
system_fingerprint
string
必需
示例
{
"id": "chatcmpl-9CTQJmIvA1d30bwWgdhQ0lW6z88hI",
"object": "chat.completion",
"created": 1712760067,
"model": "gpt-3.5-turbo-0125",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "\n{\n \"error\": \"I'm sorry, but the World Series is not a fixed event, and I cannot provide real-time information. You may want to search online for the latest winner.\"\n}"
},
"logprobs": null,
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 31,
"completion_tokens": 41,
"total_tokens": 72
},
"system_fingerprint": "fp_b28b39ffa8"
}
最后修改时间: 6 个月前