From 32bf900425c9fa4eade2717fbb90024780891c7d Mon Sep 17 00:00:00 2001 From: Allan Ditzel Date: Mon, 17 Aug 2026 21:57:26 -0400 Subject: [PATCH] fix(provider): add glm-5.3 to zai_coding provider GLM-5.3 was released on 2026-08-14 and is available to all GLM Coding Plan subscribers, but was missing from the hardcoded zai_coding catalog. Adds the glm-5.3 model entry with specs from the official docs: - 1M context window, 128K max output - text-only input - always-on reasoning (low/high/max effort), tools + parallel calls Not added to the general 'zai' provider: the Model API endpoint for GLM-5.3 is not yet live (docs list it as 'available soon'). --- crates/forge_repo/src/provider/provider.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/crates/forge_repo/src/provider/provider.json b/crates/forge_repo/src/provider/provider.json index 27da81ff9a..702939065c 100644 --- a/crates/forge_repo/src/provider/provider.json +++ b/crates/forge_repo/src/provider/provider.json @@ -1298,6 +1298,16 @@ "response_type": "OpenAI", "url": "https://api.z.ai/api/coding/paas/v4/chat/completions", "models": [ + { + "id": "glm-5.3", + "name": "GLM-5.3", + "description": "Latest flagship model with 50% better coding performance than GLM-5.2 on Z.ai Code Bench, 1M context window, 128K maximum output, and always-on reasoning with low/high/max effort levels", + "context_length": 1048576, + "tools_supported": true, + "supports_parallel_tool_calls": true, + "supports_reasoning": true, + "input_modalities": ["text"] + }, { "id": "glm-5.2", "name": "GLM-5.2",