创建聊天
POST
https://api.baicaigpt.com/v1/chat/completions接口描述:为给定的聊天对话创建模型响应。创建聊天完成" 意味着可能是指在聊天对话中生成或补全一部分内容,使得对话更加连贯或完整。
官方文档:接口格式和官方API一致,未尽事宜,可参见官方文档https://platform.openai.com/docs/api-reference/chat/create
请求参数
Header 参数
Authorization
string
必需
示例值:
Bearer baicai-xxxxxxxx
Content-Type
string
必需
示例值:
application/json
示例
{
"model": "gpt-3.5-turbo",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Hello!"
}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
id
string
必需
object
string
必需
created
integer
必需
model
string
必需
system_fingerprint
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
必需
示例
{
"id": "chatcmpl-123",
"object": "chat.completion",
"created": 1677652288,
"model": "gpt-3.5-turbo-0613",
"system_fingerprint": "fp_44709d6fcb",
"choices": [{
"index": 0,
"message": {
"role": "assistant",
"content": "\n\nHello there, how may I assist you today?",
},
"logprobs": null,
"finish_reason": "stop"
}],
"usage": {
"prompt_tokens": 9,
"completion_tokens": 12,
"total_tokens": 21
}
}
最后修改时间: 1 年前