From 648839c5dd1806447a7c784e9e3126a8a1bbfcf8 Mon Sep 17 00:00:00 2001 From: Yige Date: Sat, 2 May 2026 00:57:54 +0800 Subject: [PATCH] feat(internal-testing): add Xiaomi MiMo V2.5 and V2.5 Pro models (#12) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在内测渠道挂载小米 MiMo V2.5 / V2.5 Pro 两款模型: - mimo-v2.5-pro:1.02T/42B 激活 MoE 旗舰,1M 上下文,长程代码与 Agent 自治 - mimo-v2.5:原生全模态(文本/图像/视频/音频),1M 上下文 沿用 internal-testing 渠道的 anthropic-messages(Claude 兼容)协议 和 https://api.yizhioa.cn/v1 端点;价格保持 0(内测免费)。 manifest.presetDataVersion: 31 -> 32 --- compute/providers/internal-testing.json | 48 +++++++++++++++++++++++++ manifest.json | 4 +-- 2 files changed, 50 insertions(+), 2 deletions(-) diff --git a/compute/providers/internal-testing.json b/compute/providers/internal-testing.json index ab400de..46a3c20 100644 --- a/compute/providers/internal-testing.json +++ b/compute/providers/internal-testing.json @@ -324,6 +324,54 @@ "defaultTemperature": 1, "defaultTopP": 0.7, "extra": {} + }, + { + "modelName": "mimo-v2.5-pro", + "displayName": "MiMo V2.5 Pro", + "serviceType": [ + "chat" + ], + "description": "小米 MiMo V2.5 Pro,1.02T 参数 / 42B 激活 MoE 旗舰,1M 上下文,长程代码与 Agent 自治,支持思考模式与工具调用", + "contextWindow": 1000000, + "maxOutputTokens": 131072, + "capabilities": [ + "chat", + "reasoning", + "code", + "tool_use", + "agent", + "long_context", + "deep_thinking" + ], + "inputPrice": 0, + "outputPrice": 0, + "defaultTemperature": 1, + "defaultTopP": 0.95, + "extra": {} + }, + { + "modelName": "mimo-v2.5", + "displayName": "MiMo V2.5", + "serviceType": [ + "chat" + ], + "description": "小米 MiMo V2.5,原生全模态模型,单一架构内处理文本/图像/视频/音频,1M 上下文", + "contextWindow": 1000000, + "maxOutputTokens": 131072, + "capabilities": [ + "chat", + "code", + "vision", + "long_context", + "tool_use", + "image_understanding", + "video_understanding" + ], + "inputPrice": 0, + "outputPrice": 0, + "defaultTemperature": 1, + "defaultTopP": 0.95, + "extra": {} } ] } diff --git a/manifest.json b/manifest.json index d66c4da..f920d2c 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "version": "1.0.0", - "presetDataVersion": 36, - "updatedAt": "2026-04-29", + "presetDataVersion": 37, + "updatedAt": "2026-05-02", "description": "DesireCore 官方配置中心" }