From 65e9a4c90c40b4242743adf366187946e3374fd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=99=B4=E5=A4=A9?= Date: Thu, 14 May 2026 02:30:34 +0800 Subject: [PATCH] feat(hermes-provider): rename 'Alibaba Cloud (DashScope)' to 'Qwen Cloud' to match upstream Hermes core 1e01b25e7 (May 2026) renamed the display label across the model picker / wizard / status output but kept the provider slug 'alibaba' and the DASHSCOPE_* env vars unchanged. Mirror the label here so the picker label in ClawPanel matches what users see in the Hermes TUI/CLI; existing configs are not migrated because slug and env vars are stable. --- src-tauri/src/commands/hermes_providers.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src-tauri/src/commands/hermes_providers.rs b/src-tauri/src/commands/hermes_providers.rs index ad0f5ea..3e28c93 100644 --- a/src-tauri/src/commands/hermes_providers.rs +++ b/src-tauri/src/commands/hermes_providers.rs @@ -283,7 +283,9 @@ const P_MINIMAX_OAUTH: HermesProvider = HermesProvider { const P_ALIBABA: HermesProvider = HermesProvider { id: "alibaba", - name: "Alibaba Cloud (DashScope)", + // 与 Hermes 内核 1e01b25e7 保持一致:显示名重命名为 Qwen Cloud, + // slug "alibaba" 与 DASHSCOPE_API_KEY env var 保持不变(用户现有配置不受影响)。 + name: "Qwen Cloud", auth_type: AUTH_API_KEY, base_url: "https://dashscope-intl.aliyuncs.com/compatible-mode/v1", base_url_env_var: "DASHSCOPE_BASE_URL",