gemini-1.5-pro-latest
POST
https://api.b3n.fun/v1/chat/completions请求参数
Header 参数
Authorization
string
可选
示例值:
sk-abc
Body 参数application/json
object {0}
示例
{
"model": "gemini-1.5-pro-latest",
"max_tokens": 4096,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "你看到了什么?"
},
{
"type": "image_url",
"image_url": {
"url": "https://images.pexels.com/photos/19845821/pexels-photo-19845821.jpeg"
}
}
]
}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
id
string
必需
model
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-41d61dadcb154d8482b1580b2323ed22",
"model": "",
"object": "chat.completion",
"created": 1726297310,
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "我看到三只绵羊站在一座小山上。两只羊是深色的,一只羊是白色的。白色绵羊的羊毛非常厚实,看起来很蓬松。背景是黄昏的天空,大部分是蓝色,有一些粉红色和紫色。远处还有一座建筑物。"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 263,
"completion_tokens": 60,
"total_tokens": 323
}
}
最后修改时间: 7 个月前