mirror of
https://git.openapi.site/https://github.com/desirecore/config-center.git
synced 2026-07-23 06:53:14 +08:00
- api-providers/{web-search,image-understanding}/*.json + _index.json
- 新增 schemas/api-provider.schema.json,validate.mjs 纳入校验(CI 自检)
- 不改 compute/ 与 manifest,presetDataVersion 不变:老客户端忽略新目录,线上不受影响
Co-authored-by: yi-ge <jackyoncode@gmail.com>
31 lines
793 B
JSON
31 lines
793 B
JSON
{
|
||
"id": "configured-vision-openai",
|
||
"name": "视觉模型(OpenAI 兼容,复用默认映射)",
|
||
"capability": "image_understanding",
|
||
"enabled": true,
|
||
"builtin": true,
|
||
"priority": 10,
|
||
"endpoint": "${baseUrl}/chat/completions",
|
||
"method": "POST",
|
||
"computeServiceType": "vision",
|
||
"requiresApiFormat": "openai-completions",
|
||
"auth": { "type": "bearer" },
|
||
"request": {
|
||
"imageMode": "url",
|
||
"bodyTemplate": {
|
||
"model": "${model}",
|
||
"messages": [
|
||
{
|
||
"role": "user",
|
||
"content": [
|
||
{ "type": "text", "text": "${prompt}" },
|
||
{ "type": "image_url", "image_url": { "url": "${imageUrl}" } }
|
||
]
|
||
}
|
||
]
|
||
}
|
||
},
|
||
"response": { "textPath": "choices.0.message.content" },
|
||
"timeoutMs": 30000
|
||
}
|