From 80565d66c1b2f5bf604fdd3a831ea18978cf97bd Mon Sep 17 00:00:00 2001 From: yi-ge Date: Mon, 23 Feb 2026 18:02:47 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=85=A8=E9=9D=A2=E5=A4=8D=E6=A0=B8=20P?= =?UTF-8?q?rovider=20=E5=AE=9A=E4=BB=B7=E4=B8=8E=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=EF=BC=8C=E6=96=B0=E5=A2=9E=20priceCurrency=20=E8=B4=A7?= =?UTF-8?q?=E5=B8=81=E6=A0=87=E8=AF=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 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 --- compute/providers/anthropic.json | 13 ++-- compute/providers/baichuan.json | 17 +++-- compute/providers/baidu.json | 13 ++-- compute/providers/cohere.json | 3 +- compute/providers/dashscope.json | 24 +++--- compute/providers/deepseek.json | 50 +++---------- compute/providers/google.json | 25 +------ compute/providers/kling.json | 3 +- compute/providers/lingyiwanwu.json | 1 + compute/providers/local-whisper.json | 3 +- compute/providers/minimax.json | 25 ++++--- compute/providers/mistral.json | 1 + compute/providers/moonshot.json | 19 ++--- compute/providers/ollama.json | 3 +- compute/providers/openai.json | 41 ++++++----- compute/providers/openrouter.json | 3 +- compute/providers/perplexity.json | 1 + compute/providers/siliconflow.json | 13 ++-- compute/providers/stability.json | 3 +- compute/providers/tencent.json | 15 ++-- compute/providers/volcengine.json | 1 + compute/providers/xai.json | 1 + compute/providers/xunfei.json | 19 +++-- compute/providers/zhipu.json | 106 ++++++++++----------------- compute/service-map.json | 2 +- manifest.json | 2 +- 26 files changed, 176 insertions(+), 231 deletions(-) diff --git a/compute/providers/anthropic.json b/compute/providers/anthropic.json index fda1b21..1ddfbe8 100644 --- a/compute/providers/anthropic.json +++ b/compute/providers/anthropic.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "USD", "services": [ "chat", "computer_use" @@ -16,12 +17,12 @@ "defaultTopP": 1, "models": [ { - "modelName": "claude-opus-4.6", + "modelName": "claude-opus-4-6", "displayName": "Claude Opus 4.6", "serviceType": ["chat"], "description": "Anthropic 最新旗舰 Opus 模型,最强能力", "contextWindow": 200000, - "maxOutputTokens": 32000, + "maxOutputTokens": 32768, "capabilities": [ "chat", "reasoning", @@ -34,12 +35,12 @@ "extra": {} }, { - "modelName": "claude-opus-4.5", + "modelName": "claude-opus-4-5", "displayName": "Claude Opus 4.5", "serviceType": ["chat"], "description": "Anthropic Opus 4.5,顶级推理能力", "contextWindow": 200000, - "maxOutputTokens": 32000, + "maxOutputTokens": 32768, "capabilities": [ "chat", "reasoning", @@ -52,7 +53,7 @@ "extra": {} }, { - "modelName": "claude-sonnet-4.5", + "modelName": "claude-sonnet-4-5", "displayName": "Claude Sonnet 4.5", "serviceType": ["chat"], "description": "Anthropic Sonnet 4.5,高性能性价比", @@ -88,7 +89,7 @@ "extra": {} }, { - "modelName": "claude-sonnet-4.5-computer", + "modelName": "claude-sonnet-4-5-computer", "displayName": "Claude Sonnet 4.5 Computer Use", "serviceType": ["computer_use"], "description": "Anthropic 最佳 Computer Use 模型", diff --git a/compute/providers/baichuan.json b/compute/providers/baichuan.json index 40bbe40..4d8d0f9 100644 --- a/compute/providers/baichuan.json +++ b/compute/providers/baichuan.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "CNY", "services": [ "chat" ], @@ -29,8 +30,8 @@ "long_context", "medical" ], - "inputPrice": 1.5, - "outputPrice": 4.5, + "inputPrice": 5, + "outputPrice": 9, "extra": {} }, { @@ -47,8 +48,8 @@ "multilingual", "medical" ], - "inputPrice": 2, - "outputPrice": 6, + "inputPrice": 10, + "outputPrice": 30, "extra": {} }, { @@ -65,8 +66,8 @@ "multilingual", "long_context" ], - "inputPrice": 5, - "outputPrice": 15, + "inputPrice": 10, + "outputPrice": 30, "extra": {} }, { @@ -82,8 +83,8 @@ "code", "multilingual" ], - "inputPrice": 3, - "outputPrice": 9, + "inputPrice": 2, + "outputPrice": 20, "extra": {} } ] diff --git a/compute/providers/baidu.json b/compute/providers/baidu.json index 81603b2..2c3d079 100644 --- a/compute/providers/baidu.json +++ b/compute/providers/baidu.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "CNY", "services": ["chat", "reasoning"], "defaultTemperature": 1, "defaultTopP": 1, @@ -16,9 +17,9 @@ "modelName": "ernie-5.0-thinking-latest", "displayName": "文心 ERNIE 5.0", "serviceType": ["chat", "reasoning"], - "description": "百度最新旗舰模型,支持深度推理、多模态和工具调用", + "description": "百度最新旗舰模型,支持深度推理、多模态和工具调用,119K输入/64K输出", "contextWindow": 131072, - "maxOutputTokens": 16384, + "maxOutputTokens": 65536, "capabilities": [ "chat", "reasoning", @@ -26,8 +27,8 @@ "multimodal", "tool_use" ], - "inputPrice": 0.83, - "outputPrice": 3.33, + "inputPrice": 8, + "outputPrice": 32, "extra": {} }, { @@ -42,8 +43,8 @@ "long_context", "fast" ], - "inputPrice": 0.11, - "outputPrice": 0.44, + "inputPrice": 0.8, + "outputPrice": 3.2, "extra": {} } ] diff --git a/compute/providers/cohere.json b/compute/providers/cohere.json index 9322255..e7bb2db 100644 --- a/compute/providers/cohere.json +++ b/compute/providers/cohere.json @@ -2,12 +2,13 @@ "id": "provider-cohere-001", "provider": "cohere", "label": "Cohere", - "baseUrl": "https://api.cohere.com/compatibility/v1", + "baseUrl": "https://api.cohere.ai/compatibility/v1", "apiFormat": "openai-completions", "apiKeyRef": "cohere", "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "USD", "services": ["chat", "embedding", "rerank"], "defaultTemperature": 1, "defaultTopP": 1, diff --git a/compute/providers/dashscope.json b/compute/providers/dashscope.json index cf2c690..7211447 100644 --- a/compute/providers/dashscope.json +++ b/compute/providers/dashscope.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "CNY", "services": [ "chat", "embedding", @@ -25,11 +26,11 @@ "defaultTopP": 0.8, "models": [ { - "modelName": "qwen3.5-max", - "displayName": "阿里云 Qwen3.5-Max", + "modelName": "qwen3.5-plus", + "displayName": "阿里云 Qwen3.5-Plus", "serviceType": ["chat"], - "description": "通义千问3.5旗舰模型,397B参数,2026除夕发布,极低价格", - "contextWindow": 252000, + "description": "通义千问3.5旗舰模型,支持文本/图像/视频输入,效果媲美Qwen3 Max,性价比更优", + "contextWindow": 262144, "maxOutputTokens": 16384, "capabilities": [ "chat", @@ -38,10 +39,11 @@ "multilingual", "long_context", "tool_use", - "agent" + "agent", + "vision" ], "inputPrice": 0.8, - "outputPrice": 2, + "outputPrice": 4.8, "extra": {} }, { @@ -115,9 +117,9 @@ "modelName": "qwen3-max", "displayName": "阿里云 Qwen3-Max", "serviceType": ["chat"], - "description": "通义千问3代旗舰模型,252K 上下文", - "contextWindow": 252000, - "maxOutputTokens": 16384, + "description": "通义千问3代旗舰模型,262K 上下文,支持思考模式", + "contextWindow": 262144, + "maxOutputTokens": 65536, "capabilities": [ "chat", "reasoning", @@ -127,8 +129,8 @@ "tool_use", "agent" ], - "inputPrice": 3.2, - "outputPrice": 12.8, + "inputPrice": 2.5, + "outputPrice": 10, "extra": {} }, { diff --git a/compute/providers/deepseek.json b/compute/providers/deepseek.json index de1718d..1f6f8fc 100644 --- a/compute/providers/deepseek.json +++ b/compute/providers/deepseek.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "CNY", "services": [ "chat", "reasoning" @@ -18,7 +19,7 @@ { "modelName": "deepseek-chat", "displayName": "DeepSeek V3.2", - "serviceType": "chat", + "serviceType": ["chat"], "description": "高性价比通用对话模型,64K 上下文", "contextWindow": 64000, "maxOutputTokens": 8000, @@ -28,17 +29,17 @@ "reasoning", "multilingual" ], - "inputPrice": 0.028, - "outputPrice": 0.42, + "inputPrice": 2, + "outputPrice": 8, "extra": {} }, { "modelName": "deepseek-reasoner", "displayName": "DeepSeek R1", - "serviceType": "reasoning", - "description": "DeepSeek R1 推理模型,64K 上下文,深度推理能力,比 GPT-4 便宜 90%", + "serviceType": ["reasoning"], + "description": "DeepSeek R1 推理模型,64K 上下文,深度推理能力,思维链最长 32K", "contextWindow": 64000, - "maxOutputTokens": 32768, + "maxOutputTokens": 8192, "capabilities": [ "chat", "reasoning", @@ -46,41 +47,8 @@ "code", "math" ], - "inputPrice": 0.55, - "outputPrice": 2.19, - "extra": {} - }, - { - "modelName": "deepseek-r1-distill-qwen-32b", - "displayName": "DeepSeek R1 蒸馏版 32B", - "serviceType": "reasoning", - "description": "DeepSeek R1蒸馏版(基于Qwen-32B),64K 上下文,性价比高的推理模型", - "contextWindow": 64000, - "maxOutputTokens": 8192, - "capabilities": [ - "reasoning", - "math", - "code", - "fast" - ], - "inputPrice": 0.14, - "outputPrice": 0.28, - "extra": {} - }, - { - "modelName": "deepseek-r1-distill-qwen-7b", - "displayName": "DeepSeek R1 蒸馏版 7B", - "serviceType": "reasoning", - "description": "DeepSeek R1蒸馏版(基于Qwen-7B),64K 上下文,极致性价比", - "contextWindow": 64000, - "maxOutputTokens": 8192, - "capabilities": [ - "reasoning", - "code", - "fast" - ], - "inputPrice": 0.05, - "outputPrice": 0.1, + "inputPrice": 4, + "outputPrice": 16, "extra": {} } ] diff --git a/compute/providers/google.json b/compute/providers/google.json index ccc9387..b00c02d 100644 --- a/compute/providers/google.json +++ b/compute/providers/google.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "USD", "services": [ "chat", "vision", @@ -51,26 +52,8 @@ "tool_use", "fast" ], - "inputPrice": 0.075, - "outputPrice": 0.4, - "extra": {} - }, - { - "modelName": "gemini-2.5-pro-vision", - "displayName": "Gemini 2.5 Pro Vision", - "serviceType": ["vision"], - "description": "Google 多模态旗舰,支持图像视频理解", - "contextWindow": 1000000, - "maxOutputTokens": 65536, - "capabilities": [ - "chat", - "vision", - "video_understanding", - "image_understanding", - "ultra_long_context" - ], - "inputPrice": 1.25, - "outputPrice": 10, + "inputPrice": 0.30, + "outputPrice": 2.50, "extra": {} }, { @@ -82,7 +65,7 @@ "text_embedding", "semantic_search" ], - "inputPrice": 0.07, + "inputPrice": 0.10, "extra": {} } ] diff --git a/compute/providers/kling.json b/compute/providers/kling.json index 738a645..0979a7a 100644 --- a/compute/providers/kling.json +++ b/compute/providers/kling.json @@ -3,11 +3,12 @@ "provider": "kling", "label": "快手 可灵", "baseUrl": "https://api.klingai.com/v1", - "apiFormat": "openai-completions", + "apiFormat": "kling-task-api", "apiKeyRef": "kling", "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "CNY", "services": [ "video_gen" ], diff --git a/compute/providers/lingyiwanwu.json b/compute/providers/lingyiwanwu.json index 6fb31ad..7b6477b 100644 --- a/compute/providers/lingyiwanwu.json +++ b/compute/providers/lingyiwanwu.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "CNY", "services": [ "chat", "vision" diff --git a/compute/providers/local-whisper.json b/compute/providers/local-whisper.json index b477300..f8c58ad 100644 --- a/compute/providers/local-whisper.json +++ b/compute/providers/local-whisper.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "USD", "services": [ "asr" ], @@ -15,7 +16,7 @@ { "modelName": "whisper-large-v3", "displayName": "Whisper Large V3", - "serviceType": "asr", + "serviceType": ["asr"], "description": "本地部署的 Whisper 大模型", "capabilities": [ "asr", diff --git a/compute/providers/minimax.json b/compute/providers/minimax.json index 8285984..b68e72f 100644 --- a/compute/providers/minimax.json +++ b/compute/providers/minimax.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "CNY", "services": ["chat", "fast", "reasoning"], "defaultTemperature": 1, "defaultTopP": 1, @@ -16,7 +17,7 @@ "modelName": "MiniMax-M2.5", "displayName": "MiniMax M2.5", "serviceType": ["chat", "reasoning"], - "description": "MiniMax 最新旗舰模型,百万级上下文,支持深度推理和工具调用", + "description": "MiniMax 最新旗舰模型,230B参数(10B激活)MoE架构,百万级上下文,支持深度推理和工具调用", "contextWindow": 1000000, "maxOutputTokens": 131072, "capabilities": [ @@ -26,15 +27,15 @@ "tool_use", "long_context" ], - "inputPrice": 0.20, - "outputPrice": 1.00, + "inputPrice": 2.1, + "outputPrice": 8.4, "extra": {} }, { "modelName": "MiniMax-M2.5-highspeed", "displayName": "MiniMax M2.5 高速版", "serviceType": ["fast"], - "description": "MiniMax M2.5 高速推理版本,适合低延迟场景", + "description": "MiniMax M2.5 高速推理版本(100TPS),适合低延迟场景", "contextWindow": 200000, "maxOutputTokens": 131072, "capabilities": [ @@ -44,8 +45,8 @@ "tool_use", "fast" ], - "inputPrice": 0.30, - "outputPrice": 2.40, + "inputPrice": 2.1, + "outputPrice": 16.8, "extra": {} }, { @@ -61,8 +62,8 @@ "tool_use", "reasoning" ], - "inputPrice": 0.27, - "outputPrice": 0.95, + "inputPrice": 2.1, + "outputPrice": 8.4, "extra": {} }, { @@ -78,8 +79,8 @@ "tool_use", "fast" ], - "inputPrice": 0.30, - "outputPrice": 2.40, + "inputPrice": 2.1, + "outputPrice": 16.8, "extra": {} }, { @@ -95,8 +96,8 @@ "code", "long_context" ], - "inputPrice": 0.20, - "outputPrice": 1.10, + "inputPrice": 1.4, + "outputPrice": 7.7, "extra": {} } ] diff --git a/compute/providers/mistral.json b/compute/providers/mistral.json index bab87e8..87174c1 100644 --- a/compute/providers/mistral.json +++ b/compute/providers/mistral.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "USD", "services": ["chat", "fast"], "defaultTemperature": 1, "defaultTopP": 1, diff --git a/compute/providers/moonshot.json b/compute/providers/moonshot.json index 072d836..7319dd4 100644 --- a/compute/providers/moonshot.json +++ b/compute/providers/moonshot.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "CNY", "services": [ "chat", "reasoning" @@ -17,10 +18,9 @@ "models": [ { "modelName": "kimi-k2.5", - "apiModelId": "kimi-2.5", "displayName": "Kimi K2.5", "serviceType": ["chat"], - "description": "月之暗面Kimi K2.5,2026年1月发布的开源新一代模型", + "description": "月之暗面Kimi K2.5,2026年1月发布的原生多模态模型,支持视觉编码和智能体集群", "contextWindow": 256000, "maxOutputTokens": 16384, "capabilities": [ @@ -29,18 +29,19 @@ "code", "tool_use", "agent", - "long_context" + "long_context", + "vision" ], - "inputPrice": 2, - "outputPrice": 8, + "inputPrice": 4, + "outputPrice": 21, "extra": {} }, { "modelName": "kimi-k2", "displayName": "Kimi K2", "serviceType": ["chat"], - "description": "月之暗面Kimi K2,万亿参数MoE模型(320B激活),128K上下文,专为智能体设计", - "contextWindow": 128000, + "description": "月之暗面Kimi K2,万亿参数MoE模型(320B激活),256K上下文,专为智能体设计", + "contextWindow": 256000, "maxOutputTokens": 8192, "capabilities": [ "chat", @@ -68,8 +69,8 @@ "deep_thinking", "long_context" ], - "inputPrice": 7.5, - "outputPrice": 30, + "inputPrice": 4, + "outputPrice": 16, "extra": {} }, { diff --git a/compute/providers/ollama.json b/compute/providers/ollama.json index 251b39d..3262dcf 100644 --- a/compute/providers/ollama.json +++ b/compute/providers/ollama.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "USD", "services": [ "chat" ], @@ -15,7 +16,7 @@ { "modelName": "llama3.1:70b", "displayName": "Llama 3.1 70B", - "serviceType": "chat", + "serviceType": ["chat"], "description": "本地运行的 Llama 3.1 70B", "contextWindow": 131072, "capabilities": [ diff --git a/compute/providers/openai.json b/compute/providers/openai.json index 4303b05..7b4583b 100644 --- a/compute/providers/openai.json +++ b/compute/providers/openai.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "USD", "services": [ "chat", "fast", @@ -167,8 +168,8 @@ "ultra_long_context", "tool_use" ], - "inputPrice": 14.4, - "outputPrice": 57.6, + "inputPrice": 2.00, + "outputPrice": 8.00, "extra": {} }, { @@ -185,8 +186,8 @@ "ultra_long_context", "tool_use" ], - "inputPrice": 2.88, - "outputPrice": 11.52, + "inputPrice": 0.40, + "outputPrice": 1.60, "extra": {} }, { @@ -202,8 +203,8 @@ "ultra_long_context", "fast" ], - "inputPrice": 0.72, - "outputPrice": 2.88, + "inputPrice": 0.10, + "outputPrice": 0.40, "extra": {} }, { @@ -219,8 +220,8 @@ "image_understanding", "tool_use" ], - "inputPrice": 18, - "outputPrice": 72, + "inputPrice": 2.50, + "outputPrice": 10.00, "extra": {} }, { @@ -236,8 +237,8 @@ "vision", "tool_use" ], - "inputPrice": 1.08, - "outputPrice": 4.32, + "inputPrice": 0.15, + "outputPrice": 0.60, "extra": {} }, { @@ -249,7 +250,7 @@ "text_embedding", "semantic_search" ], - "inputPrice": 0.14, + "inputPrice": 0.02, "extra": {} }, { @@ -261,7 +262,7 @@ "text_embedding", "semantic_search" ], - "inputPrice": 0.94, + "inputPrice": 0.13, "extra": {} }, { @@ -352,8 +353,8 @@ "science", "tool_use" ], - "inputPrice": 14.4, - "outputPrice": 57.6, + "inputPrice": 2.00, + "outputPrice": 8.00, "extra": {} }, { @@ -370,8 +371,8 @@ "math", "science" ], - "inputPrice": 144, - "outputPrice": 576, + "inputPrice": 20.00, + "outputPrice": 80.00, "extra": {} }, { @@ -387,8 +388,8 @@ "code", "fast" ], - "inputPrice": 7.92, - "outputPrice": 31.68, + "inputPrice": 1.10, + "outputPrice": 4.40, "extra": {} }, { @@ -405,8 +406,8 @@ "tool_use", "vision" ], - "inputPrice": 7.92, - "outputPrice": 31.68, + "inputPrice": 1.10, + "outputPrice": 4.40, "extra": {} }, { diff --git a/compute/providers/openrouter.json b/compute/providers/openrouter.json index b43d7af..772de1b 100644 --- a/compute/providers/openrouter.json +++ b/compute/providers/openrouter.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "USD", "services": ["chat"], "defaultTemperature": 1, "defaultTopP": 1, @@ -45,7 +46,7 @@ "extra": {} }, { - "modelName": "qwen/qwen3-coder-480b:free", + "modelName": "qwen/qwen3-coder:free", "displayName": "Qwen3 Coder 480B (免费)", "serviceType": ["chat"], "description": "通过 OpenRouter 免费使用的 Qwen3 Coder 480B", diff --git a/compute/providers/perplexity.json b/compute/providers/perplexity.json index bea9710..ac4ee2b 100644 --- a/compute/providers/perplexity.json +++ b/compute/providers/perplexity.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "USD", "services": ["chat"], "defaultTemperature": 1, "defaultTopP": 1, diff --git a/compute/providers/siliconflow.json b/compute/providers/siliconflow.json index 74a662e..389b723 100644 --- a/compute/providers/siliconflow.json +++ b/compute/providers/siliconflow.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "CNY", "services": ["chat", "embedding"], "defaultTemperature": 1, "defaultTopP": 1, @@ -25,8 +26,8 @@ "agent", "tool_use" ], - "inputPrice": 0.22, - "outputPrice": 1.00, + "inputPrice": 8, + "outputPrice": 16, "extra": {} }, { @@ -42,22 +43,22 @@ "code", "multilingual" ], - "inputPrice": 0.35, - "outputPrice": 1.39, + "inputPrice": 2.5, + "outputPrice": 10, "extra": {} }, { "modelName": "BAAI/bge-m3", "displayName": "BGE-M3 (硅基)", "serviceType": ["embedding"], - "description": "多语言 Embedding 模型,支持 8K 上下文", + "description": "多语言 Embedding 模型,支持 8K 上下文,免费版", "contextWindow": 8192, "maxOutputTokens": 0, "capabilities": [ "text_embedding", "multilingual" ], - "inputPrice": 0.005, + "inputPrice": 0, "outputPrice": 0, "extra": {} } diff --git a/compute/providers/stability.json b/compute/providers/stability.json index 80eb59b..e12b65d 100644 --- a/compute/providers/stability.json +++ b/compute/providers/stability.json @@ -3,11 +3,12 @@ "provider": "stability", "label": "Stability SDXL", "baseUrl": "https://api.stability.ai/v2beta", - "apiFormat": "openai-completions", + "apiFormat": "stability-rest-api", "apiKeyRef": "stability", "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "USD", "services": [ "image_gen" ], diff --git a/compute/providers/tencent.json b/compute/providers/tencent.json index 962170f..54edcc5 100644 --- a/compute/providers/tencent.json +++ b/compute/providers/tencent.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "CNY", "services": ["chat", "reasoning"], "defaultTemperature": 1, "defaultTopP": 1, @@ -16,17 +17,17 @@ "modelName": "hunyuan-2.0-thinking-20251109", "displayName": "混元 2.0 Think", "serviceType": ["reasoning"], - "description": "腾讯混元最新推理模型,262K 上下文,支持深度思考", - "contextWindow": 262144, - "maxOutputTokens": 16384, + "description": "腾讯混元最新推理模型,128K输入/64K输出,MoE架构406B总参数", + "contextWindow": 131072, + "maxOutputTokens": 65536, "capabilities": [ "chat", "reasoning", "deep_thinking", "long_context" ], - "inputPrice": 0.55, - "outputPrice": 2.21, + "inputPrice": 3.975, + "outputPrice": 15.9, "extra": {} }, { @@ -42,8 +43,8 @@ "fast", "tool_use" ], - "inputPrice": 0.11, - "outputPrice": 0.28, + "inputPrice": 0.8, + "outputPrice": 2, "extra": {} } ] diff --git a/compute/providers/volcengine.json b/compute/providers/volcengine.json index a50a2f8..dd9019a 100644 --- a/compute/providers/volcengine.json +++ b/compute/providers/volcengine.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "CNY", "services": [ "chat", "reasoning", diff --git a/compute/providers/xai.json b/compute/providers/xai.json index 0ba91a0..4578392 100644 --- a/compute/providers/xai.json +++ b/compute/providers/xai.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "USD", "services": ["chat", "reasoning"], "defaultTemperature": 1, "defaultTopP": 1, diff --git a/compute/providers/xunfei.json b/compute/providers/xunfei.json index d3838c6..9fd90aa 100644 --- a/compute/providers/xunfei.json +++ b/compute/providers/xunfei.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "CNY", "services": ["chat", "reasoning"], "defaultTemperature": 1, "defaultTopP": 1, @@ -16,7 +17,7 @@ "modelName": "x1", "displayName": "讯飞星火 X1", "serviceType": ["reasoning"], - "description": "讯飞最新推理模型,擅长数学和代码推理", + "description": "讯飞最新推理模型,基于全国产算力训练,擅长数学和代码推理", "contextWindow": 32768, "maxOutputTokens": 16384, "capabilities": [ @@ -26,9 +27,11 @@ "math", "code" ], - "inputPrice": 2.92, - "outputPrice": 11.67, - "extra": {} + "inputPrice": 11, + "outputPrice": 11, + "extra": { + "pricingNote": "讯飞按token包计费,不区分输入输出" + } }, { "modelName": "4.0Ultra", @@ -43,9 +46,11 @@ "code", "tool_use" ], - "inputPrice": 2.92, - "outputPrice": 11.67, - "extra": {} + "inputPrice": 60, + "outputPrice": 60, + "extra": { + "pricingNote": "讯飞按token包计费,不区分输入输出" + } } ] } diff --git a/compute/providers/zhipu.json b/compute/providers/zhipu.json index cd6213f..d7a41df 100644 --- a/compute/providers/zhipu.json +++ b/compute/providers/zhipu.json @@ -8,6 +8,7 @@ "apiKeyVerified": false, "enabled": false, "status": "unconfigured", + "priceCurrency": "CNY", "services": [ "chat", "vision", @@ -21,47 +22,7 @@ "modelName": "glm-5", "displayName": "GLM-5", "serviceType": ["chat"], - "description": "智谱GLM-5,745B参数MoE架构,2026年2月发布,编程能力登顶", - "contextWindow": 192000, - "maxOutputTokens": 128000, - "capabilities": [ - "chat", - "reasoning", - "code", - "multilingual", - "deep_thinking", - "long_context", - "math" - ], - "inputPrice": 4, - "outputPrice": 8, - "extra": {} - }, - { - "modelName": "glm-5-plus", - "displayName": "GLM-5-Plus", - "serviceType": ["chat"], - "description": "智谱GLM-5增强版,幻觉率仅2.6%,面向严肃医疗场景", - "contextWindow": 192000, - "maxOutputTokens": 128000, - "capabilities": [ - "chat", - "reasoning", - "code", - "multilingual", - "deep_thinking", - "long_context", - "medical" - ], - "inputPrice": 8, - "outputPrice": 16, - "extra": {} - }, - { - "modelName": "glm-4.7", - "displayName": "GLM-4.7", - "serviceType": ["chat"], - "description": "智谱GLM-4.7,面向超长上下文理解与生成,200K上下文", + "description": "智谱GLM-5,744B参数旗舰基座模型,2026年2月发布,面向Agentic Engineering,编程能力接近Claude Opus", "contextWindow": 200000, "maxOutputTokens": 128000, "capabilities": [ @@ -70,7 +31,30 @@ "code", "multilingual", "deep_thinking", - "long_context" + "long_context", + "math", + "tool_use", + "agent" + ], + "inputPrice": 4, + "outputPrice": 18, + "extra": {} + }, + { + "modelName": "glm-4.7", + "displayName": "GLM-4.7", + "serviceType": ["chat"], + "description": "智谱GLM-4.7,355B参数MoE架构旗舰模型,200K上下文,编程能力对齐Claude Sonnet", + "contextWindow": 200000, + "maxOutputTokens": 128000, + "capabilities": [ + "chat", + "reasoning", + "code", + "multilingual", + "deep_thinking", + "long_context", + "tool_use" ], "inputPrice": 4, "outputPrice": 16, @@ -80,9 +64,9 @@ "modelName": "glm-4.7-thinking", "displayName": "GLM-4.7 Thinking", "serviceType": ["reasoning"], - "description": "智谱GLM-4.7深度思考版,200K上下文", + "description": "智谱GLM-4.7深度思考模式,200K上下文,交错式/保留式/轮级思考", "contextWindow": 200000, - "maxOutputTokens": 64000, + "maxOutputTokens": 128000, "capabilities": [ "reasoning", "math", @@ -95,18 +79,19 @@ "extra": {} }, { - "modelName": "glm-4.7v", - "displayName": "GLM-4.7V", + "modelName": "glm-4.6v", + "displayName": "GLM-4.6V", "serviceType": ["vision"], - "description": "智谱GLM-4.7多模态版,支持图像视频理解,200K上下文", - "contextWindow": 200000, + "description": "智谱GLM-4.6V多模态版,106B/12B MoE,支持图像视频理解与工具调用,128K上下文", + "contextWindow": 128000, "maxOutputTokens": 8192, "capabilities": [ "chat", "vision", "video_understanding", "image_understanding", - "long_context" + "long_context", + "tool_use" ], "inputPrice": 8, "outputPrice": 32, @@ -116,7 +101,7 @@ "modelName": "glm-4.6", "displayName": "GLM-4.6", "serviceType": ["chat"], - "description": "智谱GLM-4.6,最新一代模型,增强推理能力,128K上下文", + "description": "智谱GLM-4.6,增强推理能力,128K上下文", "contextWindow": 128000, "maxOutputTokens": 8192, "capabilities": [ @@ -126,25 +111,8 @@ "multilingual", "deep_thinking" ], - "inputPrice": 4, - "outputPrice": 16, - "extra": {} - }, - { - "modelName": "glm-4.6v", - "displayName": "GLM-4.6V", - "serviceType": ["vision"], - "description": "智谱GLM-4.6多模态版,支持图像理解,128K上下文", - "contextWindow": 128000, - "maxOutputTokens": 8192, - "capabilities": [ - "chat", - "vision", - "image_understanding", - "ocr" - ], - "inputPrice": 8, - "outputPrice": 32, + "inputPrice": 5, + "outputPrice": 5, "extra": {} }, { diff --git a/compute/service-map.json b/compute/service-map.json index 91cea8c..09465be 100644 --- a/compute/service-map.json +++ b/compute/service-map.json @@ -68,7 +68,7 @@ "providerId": "provider-dashscope-001" }, "computer_use": { - "modelName": "claude-sonnet-4.5-computer", + "modelName": "claude-sonnet-4-5-computer", "providerId": "provider-anthropic-001" } } diff --git a/manifest.json b/manifest.json index b064dce..9f708f7 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "version": "1.0.0", - "presetDataVersion": 6, + "presetDataVersion": 7, "updatedAt": "2026-02-23", "description": "DesireCore 官方配置中心" }