From 8ed9da7165340150be968e968f7d9ea33902c7e3 Mon Sep 17 00:00:00 2001 From: zmf Date: Fri, 14 Aug 2026 16:15:17 +0700 Subject: [PATCH] feat(providers): add glm-5.3 to GLM Coding and GLM (China) registries Zhipu released GLM-5.3 on both api.z.ai and open.bigmodel.cn coding endpoints. Verified live against both, returning model:"glm-5.3" with native reasoning_content. No other changes needed: the '*glm-5*' family pattern in capabilities.js and 'glm-5*' in pricing.js already cover it. --- open-sse/providers/registry/glm-cn.js | 1 + open-sse/providers/registry/glm.js | 1 + 2 files changed, 2 insertions(+) diff --git a/open-sse/providers/registry/glm-cn.js b/open-sse/providers/registry/glm-cn.js index 90a71b4c..cff9eb92 100644 --- a/open-sse/providers/registry/glm-cn.js +++ b/open-sse/providers/registry/glm-cn.js @@ -21,6 +21,7 @@ export default { }, }, models: [ + { id: "glm-5.3", name: "GLM 5.3" }, { id: "glm-5.2", name: "GLM 5.2" }, { id: "glm-5.1", name: "GLM 5.1" }, { id: "glm-5", name: "GLM 5" }, diff --git a/open-sse/providers/registry/glm.js b/open-sse/providers/registry/glm.js index 95e11533..9bc099b2 100644 --- a/open-sse/providers/registry/glm.js +++ b/open-sse/providers/registry/glm.js @@ -45,6 +45,7 @@ export default { }, ], models: [ + { id: "glm-5.3", name: "GLM 5.3" }, { id: "glm-5.2", name: "GLM 5.2" }, { id: "glm-5.1", name: "GLM 5.1" }, { id: "glm-5", name: "GLM 5" },