- OpenAI
- README
- 使用 OpenAI 官方 Python 包
- 对话
- 多模态-图片
- 图像生成
- 文本向量化
- 文本转语音
- 语音转文本
- JSON mode
- Tools Call
- 逆向模型
- Anthropic
- README
- 使用 Anthropic 官方 Python 包
- 对话 ( 适配为 OpenAI 格式 )
- 图像分析 ( 适配为 OpenAI 格式 )
- Google
- 用户个人信息查询GET
gpt-3.5-turbo
POST
https://api.b3n.fun/v1/chat/completions
请求参数
Header 参数
Authorization
string
可选
示例值:
{{KEY}}
Body 参数application/json
model
string
必需
messages
array [object {2}]
必需
role
string
可选
content
string
可选
tools
array [object {2}]
必需
type
string
可选
function
object
可选
示例
{
"model": "gpt-3.5-turbo",
"messages": [
{
"role": "user",
"content": "What is the weather like in Shanghai?"
}
],
"tools": [
{
"type": "function",
"function": {
"name": "get_current_weather",
"description": "Get the current weather in a given location",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and state, e.g. San Francisco, CA"
},
"unit": {
"type": "string",
"enum": [
"celsius",
"fahrenheit"
]
}
},
"required": [
"location"
]
}
}
}
]
}
示例代码
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://api.b3n.fun/v1/chat/completions' \
--header 'Authorization: sk-abc' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gpt-3.5-turbo",
"messages": [
{
"role": "user",
"content": "What is the weather like in Shanghai?"
}
],
"tools": [
{
"type": "function",
"function": {
"name": "get_current_weather",
"description": "Get the current weather in a given location",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and state, e.g. San Francisco, CA"
},
"unit": {
"type": "string",
"enum": [
"celsius",
"fahrenheit"
]
}
},
"required": [
"location"
]
}
}
}
]
}'
返回响应
🟢200成功
application/json
Body
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
必需
示例
{
"id": "chatcmpl-9CSqiArjOmkvQMuUE98SdFIiqnjnM",
"object": "chat.completion",
"created": 1712757860,
"model": "gpt-3.5-turbo-0125",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": null,
"tool_calls": [
{
"id": "call_dl54aRe4BBrgpm8tLLrpNdRV",
"type": "function",
"function": {
"name": "get_current_weather",
"arguments": "{\"location\":\"Shanghai\"}"
}
}
]
},
"logprobs": null,
"finish_reason": "tool_calls"
}
],
"usage": {
"prompt_tokens": 82,
"completion_tokens": 16,
"total_tokens": 98
},
"system_fingerprint": "fp_b28b39ffa8"
}
修改于 2024-04-18 12:25:21