Chat(流式返回)
POST
https://apinew.tutujin.com/v1/chat/completions
聊天(Chat)
请求参数
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
number
可选
top_p
number
可选
n
integer
可选
stream
boolean
可选
stop
string
可选
max_tokens
integer
可选
presence_penalty
number
可选
frequency_penalty
number
可选
logit_bias
object
可选
user
string
可选
response_format
object
可选
seen
integer
可选
tools
array [object]
函数调用的定义
tool_choice
object
可选
示例
{
"model": "gpt-3.5-turbo",
"stream": true,
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Hello!"
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://apinew.tutujin.com/v1/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gpt-3.5-turbo",
"stream": true,
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Hello!"
}
]
}'
返回响应
🟢200成功
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": "Hello there, how may I assist you today?"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 9,
"completion_tokens": 12,
"total_tokens": 21
}
}
修改于 2025-05-05 13:52:06