You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`<any other KEY>`| string | Custom environment variable |
55
57
58
+
#### Context Windows
59
+
60
+
`contextWindow` and `autoCompactWindow` are top-level `settings.json` fields. A number must be a positive integer and represents an exact token count. A string uses a case-insensitive `K` or `M` suffix, with `1K = 1024` and `1M = 1024²`:
61
+
62
+
```json
63
+
{
64
+
"contextWindow": "1M",
65
+
"autoCompactWindow": "512K"
66
+
}
67
+
```
68
+
69
+
The default context window is `256K` for regular models and `1M` for DeepSeek V4 models. If the auto-compaction threshold is omitted, it is 50% of the final context window. Invalid values are ignored, and an auto-compaction threshold larger than the context window is capped at the context window.
70
+
56
71
#### `thinkingEnabled` — Thinking Mode
57
72
58
73
Whether to enable DeepSeek thinking mode. Set to `true` to enable, `false` to disable.
0 commit comments