File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818# Entries are matched in order (first match wins): put more specific
1919# patterns before general ones.
2020CONTEXT_WINDOWS : list [tuple [str , int ]] = [
21- ("gpt-5-mini" , 128000 ),
22- ("gpt-5" , 400000 ),
23- ("claude" , 200000 ),
24- ("deepseek-v3" , 128000 ),
21+ ("gpt-5-mini" , 128_000 ),
22+ ("gpt-5" , 400_000 ),
23+ ("gpt-oss-120b" , 128_000 ),
24+ ("claude" , 200_000 ),
25+ ("deepseek-v3" , 128_000 ),
2526 ("deepseek-v4" , 1_000_000 ),
26- ("qwen3.5" , 131072 ),
27- ("qwen3" , 131072 ),
27+ ("qwen3.5" , 131_072 ),
28+ ("qwen3.6" , 262_144 ),
29+ ("qwen3.8" , 262_144 ),
30+ ("qwen3" , 131_072 ),
2831 ("glm-5.2" , 1_000_000 ),
29- ("glm-5.1" , 128000 ),
30- ("kimi-k2.7" , 256000 ),
31- ("kimi" , 128000 ),
32+ ("glm-5.1" , 128_000 ),
33+ ("kimi-k2.7" , 256_000 ),
34+ ("kimi" , 128_000 ),
3235]
33- DEFAULT_CONTEXT_WINDOW = 32768
36+ DEFAULT_CONTEXT_WINDOW = 128_000
3437
3538# ---- completion supervision ----------------------------------------------
3639MAX_NUDGES = 2
You can’t perform that action at this time.
0 commit comments