From 24ea13a8e94ed58f9347c41ec98d0ab0ee3c3189 Mon Sep 17 00:00:00 2001 From: Teknium <127238744+teknium1@users.noreply.github.com> Date: Mon, 20 Jul 2026 01:17:28 -0700 Subject: [PATCH] fix: align gmi fallback_models ordering with curated list test_gmi_provider asserts fallback_models == _PROVIDER_MODELS["gmi"]; the salvaged plugin commit placed sonnet-5 after sonnet-4.6 while the curated list has it before. Match the curated ordering. --- plugins/model-providers/gmi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/model-providers/gmi/__init__.py b/plugins/model-providers/gmi/__init__.py index a273bddb9cbd..bf7dfb91689e 100644 --- a/plugins/model-providers/gmi/__init__.py +++ b/plugins/model-providers/gmi/__init__.py @@ -23,8 +23,8 @@ gmi = ProviderProfile( "deepseek-ai/DeepSeek-V3.2", "moonshotai/Kimi-K2.5", "google/gemini-3.1-flash-lite-preview", - "anthropic/claude-sonnet-4.6", "anthropic/claude-sonnet-5", + "anthropic/claude-sonnet-4.6", "openai/gpt-5.4", ), )