From 3fcc24e8bf23e8649f9564cfa32f67f668ffbb88 Mon Sep 17 00:00:00 2001 From: Surapong Kanoktipsatharporn Date: Mon, 20 Oct 2025 17:13:32 +0700 Subject: [PATCH] Add Z.AI GLM and TNG DeepSeek R1T2 Chimera models to OpenRouter - Added Z.AI GLM 4.5 Air (free) and GLM 4.6 to quick-thinking options - Added Z.AI GLM 4.5 Air (free) and GLM 4.6 to deep-thinking options - Added TNG DeepSeek R1T2 Chimera (free and paid) for advanced reasoning - Improved Google Gemini 2.0 Flash Exp description for consistency These models provide additional OpenRouter options for: - Cost-effective reasoning with free GLM 4.5 Air - Advanced versatile performance with GLM 4.6 - Specialized reasoning capabilities with DeepSeek R1T2 Chimera --- cli/utils.py | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/cli/utils.py b/cli/utils.py index 053704d9..7ca2dfc2 100644 --- a/cli/utils.py +++ b/cli/utils.py @@ -178,9 +178,14 @@ def select_shallow_thinking_agent(provider) -> str: "meta-llama/llama-3.3-8b-instruct:free", ), ( - "google/gemini-2.0-flash-exp:free - Gemini Flash 2.0 offers a significantly faster time to first token", + "Google: Gemini 2.0 Flash Exp (free) - Significantly faster time to first token", "google/gemini-2.0-flash-exp:free", ), + ( + "Z.AI: GLM 4.5 Air (free) - Fast and efficient general-purpose model", + "z-ai/glm-4.5-air:free", + ), + ("Z.AI: GLM 4.6 - Advanced versatile model", "z-ai/glm-4.6"), ], "ollama": [ ("llama3.1 local", "llama3.1"), @@ -273,6 +278,19 @@ def select_deep_thinking_agent(provider) -> str: "Deepseek - latest iteration of the flagship chat model family from the DeepSeek team.", "deepseek/deepseek-chat-v3-0324:free", ), + ( + "Z.AI: GLM 4.5 Air (free) - Fast and efficient general-purpose model", + "z-ai/glm-4.5-air:free", + ), + ("Z.AI: GLM 4.6 - Advanced versatile model", "z-ai/glm-4.6"), + ( + "TNG: DeepSeek R1T2 Chimera (free) - Advanced reasoning model", + "tngtech/deepseek-r1t2-chimera:free", + ), + ( + "TNG: DeepSeek R1T2 Chimera - Premium advanced reasoning model", + "tngtech/deepseek-r1t2-chimera", + ), ], "ollama": [ ("llama3.1 local", "llama3.1"),