Edit glm.ts

This commit is contained in:
reanon
2025-10-01 00:05:29 -08:00
parent 1e4747c744
commit 3247698173
+1 -1
View File
@@ -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");
}
/**