From 7a78c0f98de7e20a5caafc3c1780feb6d63dda74 Mon Sep 17 00:00:00 2001 From: Abiba Date: Tue, 19 May 2026 18:20:20 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20heavy=20tier=20=E2=80=94=20Dense=20first?= =?UTF-8?q?=20(best=20for=20reasoning),=20then=20MoE,=20then=20VLM?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- router/router.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/router.py b/router/router.py index dc29ca7..e0a1b1d 100644 --- a/router/router.py +++ b/router/router.py @@ -183,7 +183,7 @@ def route(rd, tier): # TIER 3: Heavy reasoning — large context or very long conversations if t > 4000 or turns > 8: - candidates = [m for m in ["qwen3.6-35B-A3B","qwen3.5-9b-vlm","qwen3.6-27B-code"] if m in avail] + candidates = [m for m in ["qwen3.6-27B-code","qwen3.6-35B-A3B","qwen3.5-9b-vlm"] if m in avail] result = select_best_gpu(candidates, "heavy_reasoning") if result: return result