cmd: fix context limits for droid and add qwen3-coder-next ctx (#14112)

This commit is contained in:
Parth Sareen
2026-02-06 01:29:53 -05:00
committed by GitHub
parent 814630ca60
commit 42e1d49fbe
4 changed files with 62 additions and 1 deletions

View File

@@ -633,6 +633,7 @@ func TestLookupCloudModelLimit(t *testing.T) {
{"deepseek-v3.2", true, 163_840, 65_536},
{"deepseek-v3.2:cloud", true, 163_840, 65_536},
{"qwen3-coder:480b", true, 262_144, 65_536},
{"qwen3-coder-next:cloud", true, 262_144, 32_768},
{"llama3.2", false, 0, 0},
{"unknown-model:cloud", false, 0, 0},
}