fix: heavy tier back to Dense→MoE→VLM (Dense now 98K)
This commit is contained in:
+2
-2
@@ -190,8 +190,8 @@ def route(rd, tier):
|
|||||||
|
|
||||||
# TIER 3: Heavy reasoning — extremely large context or very long conversations
|
# TIER 3: Heavy reasoning — extremely large context or very long conversations
|
||||||
if t > 50000 or turns > 25:
|
if t > 50000 or turns > 25:
|
||||||
# Prefer models with larger context windows (MoE/VLM at 131K, Dense at 65K)
|
# Dense first (98K, purpose-built for reasoning), then MoE/VLM 131K
|
||||||
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")
|
result = select_best_gpu(candidates, "heavy_reasoning")
|
||||||
if result: return result
|
if result: return result
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user