From 7ebae58a8cfef14fadbcd0925f11d13ce0e174ce Mon Sep 17 00:00:00 2001 From: pomelo-nwu Date: Mon, 23 Feb 2026 10:18:57 +0800 Subject: [PATCH] feat: add glm-4.7 and kimi-k2.5 to Coding Plan (Global/Intl region) - Added glm-4.7 and kimi-k2.5 to the Global/Intl region template - Excluded qwen3-coder-next as it's not yet supported internationally - Both models configured with thinking enabled Co-authored-by: Qwen-Coder --- packages/cli/src/constants/codingPlan.ts | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages/cli/src/constants/codingPlan.ts b/packages/cli/src/constants/codingPlan.ts index a8a95b9cb..7b01f3ba4 100644 --- a/packages/cli/src/constants/codingPlan.ts +++ b/packages/cli/src/constants/codingPlan.ts @@ -162,6 +162,32 @@ export function generateCodingPlanTemplate( }, }, }, + { + id: 'glm-4.7', + name: 'glm-4.7', + description: + 'glm-4.7 model with thinking enabled from Coding Plan (Global/Intl)', + baseUrl: 'https://coding-intl.dashscope.aliyuncs.com/v1', + envKey: CODING_PLAN_ENV_KEY, + generationConfig: { + extra_body: { + enable_thinking: true, + }, + }, + }, + { + id: 'kimi-k2.5', + name: 'kimi-k2.5', + description: + 'kimi-k2.5 model with thinking enabled from Coding Plan (Global/Intl)', + baseUrl: 'https://coding-intl.dashscope.aliyuncs.com/v1', + envKey: CODING_PLAN_ENV_KEY, + generationConfig: { + extra_body: { + enable_thinking: true, + }, + }, + }, ]; }