From 424d943b122405ca3831234041c12184f628c85f Mon Sep 17 00:00:00 2001 From: Abiba Bot Date: Fri, 5 Jun 2026 23:15:18 +0000 Subject: [PATCH] =?UTF-8?q?router:=20fix=20Dense=20context=20window=2098K?= =?UTF-8?q?=E2=86=92262K=20(matches=20actual=20n=5Fctx)?= 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 66d4e06..8d1a754 100644 --- a/router/router.py +++ b/router/router.py @@ -27,7 +27,7 @@ GPU_MAX_CONCURRENT = { # Context window sizes (tokens) — used for compaction signals GPU_CONTEXT = { "qwen3.6-35B-A3B": 131072, - "qwen3.6-27B-code": 98304, + "qwen3.6-27B-code": 262144, "gemma-4-12b": 262144, # 262K context (gemma-4-12b) }