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
This commit is contained in:
Surapong Kanoktipsatharporn 2025-10-20 17:13:32 +07:00
parent bc221c1e74
commit 3fcc24e8bf
1 changed files with 19 additions and 1 deletions

View File

@ -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"),