- OpenAI
- README
- 使用 OpenAI 官方 Python 包
- 对话
- 多模态-图片
- 图像生成
- 文本向量化
- 文本转语音
- 语音转文本
- JSON mode
- Tools Call
- 逆向模型
- Anthropic
- Google
- 用户个人信息查询GET
claude-3-5-haiku-latest
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
可选
tool_choice
string
必需
示例
{
"model": "claude-3-5-haiku-latest",
"messages": [
{
"role": "user",
"content": "What's the weather like in Boston today?"
}
],
"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"
]
}
}
}
],
"tool_choice": "auto"
}
示例代码
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": "claude-3-5-haiku-latest",
"messages": [
{
"role": "user",
"content": "What'\''s the weather like in Boston today?"
}
],
"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"]
}
}
}
],
"tool_choice": "auto"
}'
返回响应
🟢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-msg_01LgSCWCaR3MZmM5GyPH6DsH",
"model": "claude-3-5-sonnet-20240620",
"object": "chat.completion",
"created": 1726297095,
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "我看到了一幅令人惊叹的冰岛风景照。画面中央是一座著名的山峰——基尔丘费尔山(Kirkjufell),它的顶部被云雾笼罩。山的形状非常独特,呈锥形,顶部覆盖着白雪。\n\n在山的左侧,可以看到一座孤独的白色小屋,屋顶是红色的,与周围的荒凉景色形成鲜明对比。\n\n前景是一条蜿蜒的黑色道路,沿着海岸线延伸。道路的一侧是白色的雪地,另一侧是深色的海水或湖水,形成了强烈的黑白对比。\n\n整个场景给人一种宁静、孤寂而又壮美的感觉。天空呈灰白色,增添了几分神秘感。这幅图片完美地捕捉了冰岛独特的自然美景,展现了大自然的力量和壮丽。"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 1559,
"completion_tokens": 307,
"total_tokens": 1866
}
}
修改于 2024-11-08 07:33:13