From 3247698173cb7aaec409b14501da7c932160782e Mon Sep 17 00:00:00 2001 From: reanon <85157-reanon@users.noreply.gitgud.io> Date: Wed, 1 Oct 2025 00:05:29 -0800 Subject: [PATCH] Edit glm.ts --- src/shared/api-schemas/glm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/api-schemas/glm.ts b/src/shared/api-schemas/glm.ts index ce29640..3255a6b 100644 --- a/src/shared/api-schemas/glm.ts +++ b/src/shared/api-schemas/glm.ts @@ -13,7 +13,7 @@ export function isGlmModel(model: string): boolean { */ export function isGlmThinkingModel(model: string): boolean { // GLM-4.5 and GLM-Z1 series support thinking mode - return model.includes("glm-4.5") || model.includes("glm-z1"); + return model.includes("glm-4.5") || model.includes("glm-z1") || model.includes("glm-4.6"); } /**