From 26d60836244a6485d0b5c9237a8a08f46a0de83a Mon Sep 17 00:00:00 2001 From: Teknium Date: Fri, 3 Apr 2026 01:56:11 -0700 Subject: [PATCH] fix: correct qwen3.6-plus model slug Renamed qwen/qwen3.6-plus-preview:free to qwen/qwen3.6-plus:free in both OPENROUTER_MODELS and _PROVIDER_MODELS['nous'] lists. --- hermes_cli/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hermes_cli/models.py b/hermes_cli/models.py index 1b3fcf1ddb..0915d150d6 100644 --- a/hermes_cli/models.py +++ b/hermes_cli/models.py @@ -28,7 +28,7 @@ GITHUB_MODELS_CATALOG_URL = COPILOT_MODELS_URL OPENROUTER_MODELS: list[tuple[str, str]] = [ ("anthropic/claude-opus-4.6", "recommended"), ("anthropic/claude-sonnet-4.6", ""), - ("qwen/qwen3.6-plus-preview:free", "free"), + ("qwen/qwen3.6-plus:free", "free"), ("anthropic/claude-sonnet-4.5", ""), ("anthropic/claude-haiku-4.5", ""), ("openai/gpt-5.4", ""), @@ -59,7 +59,7 @@ _PROVIDER_MODELS: dict[str, list[str]] = { "nous": [ "anthropic/claude-opus-4.6", "anthropic/claude-sonnet-4.6", - "qwen/qwen3.6-plus-preview:free", + "qwen/qwen3.6-plus:free", "anthropic/claude-sonnet-4.5", "anthropic/claude-haiku-4.5", "openai/gpt-5.4",