From 2c7771da425236673027233874f8aaf0962b5f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BE=84=E6=BD=AD?= Date: Thu, 12 Feb 2026 16:56:23 +0800 Subject: [PATCH] Update index.ts --- .../higress-openclaw-integration/scripts/plugin/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.claude/skills/higress-openclaw-integration/scripts/plugin/index.ts b/.claude/skills/higress-openclaw-integration/scripts/plugin/index.ts index ef0ae1934..513261ed9 100644 --- a/.claude/skills/higress-openclaw-integration/scripts/plugin/index.ts +++ b/.claude/skills/higress-openclaw-integration/scripts/plugin/index.ts @@ -207,17 +207,17 @@ const higressPlugin = { // FIX: Avoid double prefix - if modelId already starts with provider, don't add prefix again const defaultModelId = hasAutoModel ? "higress/auto" - : (modelIds[0] ?? "qwen-turbo"); + : (modelIds[0] ?? "glm-5"); const defaultModelRef = defaultModelId.startsWith("higress/") ? defaultModelId : `higress/${defaultModelId}`; // Step 7: Configure default model for auto-routing - let autoRoutingDefaultModel = "qwen-turbo"; + let autoRoutingDefaultModel = "glm-5"; if (hasAutoModel) { const autoRoutingModelInput = await ctx.prompter.text({ message: "Default model for auto-routing (when no rule matches)", - initialValue: "qwen-turbo", + initialValue: "glm-5", }); autoRoutingDefaultModel = autoRoutingModelInput.trim(); // FIX: Add trim() here }