From fb4b87f4af7783759e600d84b0b1fb2dff966ffb Mon Sep 17 00:00:00 2001 From: Teknium <127238744+teknium1@users.noreply.github.com> Date: Mon, 30 Mar 2026 20:33:21 -0700 Subject: [PATCH] chore: add claude-sonnet-4.6 to OpenRouter and Nous model lists (#4157) --- hermes_cli/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hermes_cli/models.py b/hermes_cli/models.py index ef2b3deb4..ed36823e4 100644 --- a/hermes_cli/models.py +++ b/hermes_cli/models.py @@ -27,6 +27,7 @@ GITHUB_MODELS_CATALOG_URL = COPILOT_MODELS_URL # (model_id, display description shown in menus) OPENROUTER_MODELS: list[tuple[str, str]] = [ ("anthropic/claude-opus-4.6", "recommended"), + ("anthropic/claude-sonnet-4.6", ""), ("anthropic/claude-sonnet-4.5", ""), ("anthropic/claude-haiku-4.5", ""), ("openai/gpt-5.4", ""), @@ -56,6 +57,7 @@ OPENROUTER_MODELS: list[tuple[str, str]] = [ _PROVIDER_MODELS: dict[str, list[str]] = { "nous": [ "anthropic/claude-opus-4.6", + "anthropic/claude-sonnet-4.6", "anthropic/claude-sonnet-4.5", "anthropic/claude-haiku-4.5", "openai/gpt-5.4",