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
- **Anthropic**: set an integer token budget. Range is 1024–32768; must be strictly less than `max_tokens`. Default: `8192` with `interleaved_thinking: true`
- **Google (Gemini 3)**: use effort levels — `minimal` (Flash only), `low`, `medium`, `high`. Default: `high` for Pro, `medium` for Flash
291
292
- **Amazon Bedrock (Claude models)**: set an integer token budget, same as Anthropic. Default: `8192` with `interleaved_thinking: true`
292
293
294
+
**Disabling thinking:**
295
+
296
+
```yaml
297
+
models:
298
+
# Using string "none"
299
+
gpt-no-thinking:
300
+
provider: openai
301
+
model: gpt-5
302
+
thinking_budget: none # or 0
303
+
304
+
# Using integer 0
305
+
claude-no-thinking:
306
+
provider: anthropic
307
+
model: claude-sonnet-4-5
308
+
thinking_budget: 0 # or none
309
+
```
310
+
311
+
Note: When thinking is disabled via config, it can still be enabled during a session using the `/think` command, which will restore the provider's default thinking configuration.
0 commit comments