创建聊天补全
POST
/v1/chat/completions
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Header 参数
Content-Type
string
必需
示例值:
application/json
Accept
string
必需
示例值:
application/json
Authorization
string
可选
示例值:
Bearer {{YOUR_API_KEY}}
Body 参数application/json
model
string
必需
messages
array [object {2}]
必需
role
string
可选
content
string
可选
temperature
integer
可选
top_p
但不是两者。top_p
integer
可选
temperature
但不是两者。n
integer
可选
为每个输入消息生成多少个聊天补全选择。
stream
boolean
可选
stop
string
可选
max_tokens
integer
可选
在聊天补全中生成的最大标记数。
presence_penalty
number
可选
frequency_penalty
number
可选
logit_bias
null
可选
user
string
可选
response_format
object
可选
seen
integer
可选
tools
array[string]
必需
tool_choice
object
必需
示例
{
"model": "gpt-4o",
"messages": [
{
"role": "user",
"content": "现有AB两套抽奖系统,系统中均包含黑白两种球,黑球中均有大奖小奖两种奖励,抽中黑球的概率均为1.6%。其中A系统在打开黑球后为大奖的概率是50%,B系统在打开黑球后为大奖的概率是55%。A系统在连续69次未抽出黑球时,第70次必定可以抽出一个黑球。A系统在抽中黑球后若获得是小奖,则下一次获得黑球时打开必定是大奖;若获得的是大奖则对下一次抽中黑球时的奖励没有影响。B系统在连续89次未抽出包含大奖的黑球时,第90次必定可以抽出一个包含大奖的黑球。请问两套系统抽到大奖的期望各是多少?用中文非常详细回答,详细描述解题过程,用多种解题方案,思考其中逻辑再举一反三,并用日语出一道类似题目并解答"
}
],
"stream": false
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST '/v1/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gpt-4o",
"messages": [
{
"role": "user",
"content": "现有AB两套抽奖系统,系统中均包含黑白两种球,黑球中均有大奖小奖两种奖励,抽中黑球的概率均为1.6%。其中A系统在打开黑球后为大奖的概率是50%,B系统在打开黑球后为大奖的概率是55%。A系统在连续69次未抽出黑球时,第70次必定可以抽出一个黑球。A系统在抽中黑球后若获得是小奖,则下一次获得黑球时打开必定是大奖;若获得的是大奖则对下一次抽中黑球时的奖励没有影响。B系统在连续89次未抽出包含大奖的黑球时,第90次必定可以抽出一个包含大奖的黑球。请问两套系统抽到大奖的期望各是多少?用中文非常详细回答,详细描述解题过程,用多种解题方案,思考其中逻辑再举一反三,并用日语出一道类似题目并解答"
}
],
"stream": false
}'
返回响应
🟢200OK
application/json
Body
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
必需
示例
{
"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
}
}
修改于 2025-01-14 07:35:40