From 0f7ec2ed992f892d1d9c332cb783a4a41db7136c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BF=8A=E8=89=AF?= Date: Wed, 10 Jun 2026 16:40:01 +0800 Subject: [PATCH] fix(core): add qwen3.7-plus to Coding Plan model list Fixes #4904. The qwen3.7-plus model was available in the Standard API Key provider but missing from the Coding Plan provider. Added it to both MODELSTUDIO_MODELS (alibaba-coding-plan.ts) and ALIBABA_SUBSCRIPTION_MODELS (subscriptionPlanDefinitions.ts) to keep them in sync. --- packages/core/src/providers/presets/alibaba-coding-plan.ts | 1 + .../src/services/subscriptionPlanDefinitions.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/core/src/providers/presets/alibaba-coding-plan.ts b/packages/core/src/providers/presets/alibaba-coding-plan.ts index 0cde6dce98c..e2e810ed7a9 100644 --- a/packages/core/src/providers/presets/alibaba-coding-plan.ts +++ b/packages/core/src/providers/presets/alibaba-coding-plan.ts @@ -32,6 +32,7 @@ const MODELSTUDIO_MODELS: ModelSpec[] = [ enableThinking: true, modalities: { image: true, video: true }, }, + { id: 'qwen3.7-plus', contextWindowSize: 1000000, enableThinking: true }, { id: 'glm-5', contextWindowSize: 202752, enableThinking: true }, { id: 'kimi-k2.5', diff --git a/packages/vscode-ide-companion/src/services/subscriptionPlanDefinitions.ts b/packages/vscode-ide-companion/src/services/subscriptionPlanDefinitions.ts index 444425298fb..707e4dba781 100644 --- a/packages/vscode-ide-companion/src/services/subscriptionPlanDefinitions.ts +++ b/packages/vscode-ide-companion/src/services/subscriptionPlanDefinitions.ts @@ -93,6 +93,7 @@ const ALIBABA_SUBSCRIPTION_MODELS = [ contextWindowSize: 1000000, enableThinking: true, }, + { id: 'qwen3.7-plus', contextWindowSize: 1000000, enableThinking: true }, { id: 'glm-5', contextWindowSize: 202752, enableThinking: true }, { id: 'kimi-k2.5', contextWindowSize: 262144, enableThinking: true }, { id: 'MiniMax-M2.5', contextWindowSize: 196608, enableThinking: true },