From 8c80b963180549418fba27c4000692839d4adbbe Mon Sep 17 00:00:00 2001 From: teknium1 Date: Fri, 6 Mar 2026 00:52:45 -0800 Subject: [PATCH] chore: update OpenRouter model list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove opus-4.5 and gpt-5.2 - Reorder GPT: 5.4-pro, 5.4, 5.3-codex - Add qwen/qwen3.5-plus-02-15 and qwen/qwen3.5-35b-a3b - Update z-ai/glm-4.7 → glm-5 - Update minimax/minimax-m2.1 → minimax-m2.5 --- hermes_cli/models.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/hermes_cli/models.py b/hermes_cli/models.py index 4d640a990..c94dd855b 100644 --- a/hermes_cli/models.py +++ b/hermes_cli/models.py @@ -9,17 +9,17 @@ Add, remove, or reorder entries here — both `hermes setup` and OPENROUTER_MODELS: list[tuple[str, str]] = [ ("anthropic/claude-opus-4.6", "recommended"), ("anthropic/claude-sonnet-4.5", ""), - ("anthropic/claude-opus-4.5", ""), - ("openai/gpt-5.2", ""), - ("openai/gpt-5.3-codex", ""), - ("openai/gpt-5.4", ""), ("openai/gpt-5.4-pro", ""), + ("openai/gpt-5.4", ""), + ("openai/gpt-5.3-codex", ""), ("google/gemini-3-pro-preview", ""), ("google/gemini-3-flash-preview", ""), + ("qwen/qwen3.5-plus-02-15", ""), + ("qwen/qwen3.5-35b-a3b", ""), ("stepfun/step-3.5-flash", ""), - ("z-ai/glm-4.7", ""), + ("z-ai/glm-5", ""), ("moonshotai/kimi-k2.5", ""), - ("minimax/minimax-m2.1", ""), + ("minimax/minimax-m2.5", ""), ]