From d7c66cdfeda82272b7f39864563576f3c051d492 Mon Sep 17 00:00:00 2001 From: OpenClaw Backup Bot Date: Tue, 21 Apr 2026 11:27:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20reasoning=20=E8=AE=BE=E4=B8=BA=20false?= =?UTF-8?q?=EF=BC=8C=E6=B7=BB=E5=8A=A0=20/alias=20=E5=BF=AB=E6=8D=B7?= =?UTF-8?q?=E5=88=87=E6=8D=A2=E4=BD=BF=E7=94=A8=E6=8C=87=E5=BC=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 ++ SKILL.md | 21 +++++++++++++++++---- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 428f148..ffff7d7 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ trapi 是传米科技(Transiglobal)提供的大模型中转 API 服务,统 | MiniMax-M2.7 | `mxm27` | 文本 | 200K | 64K | | K2.6-code-preview | `kimi` | 文本 + 图片 | 200K | 64K | +### 快捷切换模型 + ## 使用方式 ### 安装技能 diff --git a/SKILL.md b/SKILL.md index d10afff..8ec5d30 100644 --- a/SKILL.md +++ b/SKILL.md @@ -46,7 +46,7 @@ description: | "id": "GLM-5-Turbo", "name": "GLM-5-Turbo (Transiglobal)", "api": "anthropic-messages", - "reasoning": true, + "reasoning": false, "input": ["text"], "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 }, "contextWindow": 200000, @@ -56,7 +56,7 @@ description: | "id": "GLM-5.1", "name": "GLM-5.1 (Transiglobal)", "api": "anthropic-messages", - "reasoning": true, + "reasoning": false, "input": ["text"], "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 }, "contextWindow": 200000, @@ -66,7 +66,7 @@ description: | "id": "MiniMax-M2.7", "name": "MiniMax-M2.7 (Transiglobal)", "api": "anthropic-messages", - "reasoning": true, + "reasoning": false, "input": ["text"], "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 }, "contextWindow": 200000, @@ -76,7 +76,7 @@ description: | "id": "K2.6-code-preview", "name": "K2.6 Code Preview (Transiglobal)", "api": "anthropic-messages", - "reasoning": true, + "reasoning": false, "input": ["text", "image"], "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 }, "contextWindow": 200000, @@ -147,6 +147,19 @@ sessions_spawn( | MiniMax-M2.7 | mxm27 | ✅/❌ | | K2.6-code-preview | kimi | ✅/❌ | +## 步骤 6:使用指引 + +配置完成并通过验证后,向用户展示快捷切换模型的使用方式: + +``` +/glm5t → 切换到 GLM-5-Turbo(高性价比) +/glm51 → 切换到 GLM-5.1(旗舰) +/mxm27 → 切换到 MiniMax-M2.7 +/kimi → 切换到 K2.6-code-preview(支持图片) +``` + +提示用户在对话中直接输入 `/alias` 即可快速切换模型。 + ## 添加新模型(trapi 已配置时) 当 trapi Provider 已存在,用户需要添加新模型时使用此流程。