mirror of
https://git.openapi.site/https://github.com/desirecore/config-center.git
synced 2026-02-28 11:58:14 +08:00
- 新增 priceCurrency 字段:国外 Provider 标记 USD,国内 Provider 标记 CNY - OpenAI GPT-4/o 系列价格修正(消除错误的 ×7.2 汇率膨胀) - Anthropic modelName 格式修正(点号→连字符,如 claude-opus-4-6) - DeepSeek 价格修正为 ¥ 原始定价,删除蒸馏模型 - DashScope qwen3.5-max→qwen3.5-plus(不存在的模型名修正) - Google gemini-2.5-pro-vision 删除(不存在),flash 价格更新 - 智谱 glm-5-plus 删除(不存在),contextWindow 修正 - Kling apiFormat→kling-task-api,Stability→stability-rest-api - Cohere baseUrl 域名修正 .com→.ai - MiniMax/百度/腾讯/讯飞/硅基流动价格修正为 ¥ 原始定价 - presetDataVersion 6→7 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
73 lines
1.7 KiB
JSON
73 lines
1.7 KiB
JSON
{
|
||
"id": "provider-google-001",
|
||
"provider": "google",
|
||
"label": "Google Gemini",
|
||
"baseUrl": "https://generativelanguage.googleapis.com/v1beta",
|
||
"apiFormat": "google-generative-ai",
|
||
"apiKeyRef": "google",
|
||
"apiKeyVerified": false,
|
||
"enabled": false,
|
||
"status": "unconfigured",
|
||
"priceCurrency": "USD",
|
||
"services": [
|
||
"chat",
|
||
"vision",
|
||
"embedding"
|
||
],
|
||
"defaultTemperature": 1,
|
||
"defaultTopP": 0.95,
|
||
"models": [
|
||
{
|
||
"modelName": "gemini-2.5-pro",
|
||
"displayName": "Gemini 2.5 Pro",
|
||
"serviceType": ["chat"],
|
||
"description": "Google 最新旗舰模型,100万上下文,多模态",
|
||
"contextWindow": 1000000,
|
||
"maxOutputTokens": 65536,
|
||
"capabilities": [
|
||
"chat",
|
||
"reasoning",
|
||
"code",
|
||
"vision",
|
||
"ultra_long_context",
|
||
"tool_use"
|
||
],
|
||
"inputPrice": 1.25,
|
||
"outputPrice": 10,
|
||
"extra": {}
|
||
},
|
||
{
|
||
"modelName": "gemini-2.5-flash",
|
||
"displayName": "Gemini 2.5 Flash",
|
||
"serviceType": ["chat"],
|
||
"description": "Google 高性价比模型,100万上下文,速度快",
|
||
"contextWindow": 1000000,
|
||
"maxOutputTokens": 65536,
|
||
"capabilities": [
|
||
"chat",
|
||
"reasoning",
|
||
"code",
|
||
"vision",
|
||
"ultra_long_context",
|
||
"tool_use",
|
||
"fast"
|
||
],
|
||
"inputPrice": 0.30,
|
||
"outputPrice": 2.50,
|
||
"extra": {}
|
||
},
|
||
{
|
||
"modelName": "text-embedding-005",
|
||
"displayName": "Text Embedding 005",
|
||
"serviceType": ["embedding"],
|
||
"description": "Google 文本嵌入模型,768维度",
|
||
"capabilities": [
|
||
"text_embedding",
|
||
"semantic_search"
|
||
],
|
||
"inputPrice": 0.10,
|
||
"extra": {}
|
||
}
|
||
]
|
||
}
|