聊天完成
开发环境
开发环境
POST
/chat/completions
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://dev-cn.your-api-server.com/chat/completions' \
--header 'content-type: application/json' \
--data-raw '{
"model": "mistral-7b-instruct",
"messages": [
{
"role": "system",
"content": "Be precise and concise."
},
{
"role": "user",
"content": "How many stars are there in our galaxy?"
}
]
}'
响应示例响应示例
200 - 成功示例
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"model": "string",
"object": "string",
"created": 0,
"choices": [
{
"index": 0,
"finish_reason": "stop",
"message": {
"content": "string",
"role": "system"
},
"delta": {
"content": "string",
"role": "system"
}
}
],
"usage": {
"prompt_tokens": 0,
"completion_tokens": 0,
"total_tokens": 0
}
}
请求参数
Header 参数
content-type
string
必需
示例值:
application/json
Body 参数application/json
返回响应
修改于 2023-12-13 05:54:22