2025-12-09 17:51:05 +00:00
---
2026-01-04 05:21:12 +00:00
summary: "Directive syntax for /think + /verbose and how they affect model reasoning"
2025-12-09 17:51:05 +00:00
read_when:
2026-01-04 05:21:12 +00:00
- Adjusting thinking or verbose directive parsing or defaults
2025-12-09 17:51:05 +00:00
---
2025-12-03 08:45:30 +00:00
# Thinking Levels (/think directives)
## What it does
- Inline directive in any inbound body: `/t <level>` , `/think:<level>` , or `/thinking <level>` .
- Levels (aliases): `off | minimal | low | medium | high`
- minimal → “think”
- low → “think hard”
- medium → “think harder”
- high → “ultrathink” (max budget)
- `highest` , `max` map to `high` .
## Resolution order
1. Inline directive on the message (applies only to that message).
2. Session override (set by sending a directive-only message).
2026-01-09 12:44:23 +00:00
3. Global default (`agents.defaults.thinkingDefault` in config).
2026-01-03 12:18:50 +00:00
4. Fallback: low for reasoning-capable models; off otherwise.
2025-12-03 08:45:30 +00:00
## Setting a session default
- Send a message that is **only** the directive (whitespace allowed), e.g. `/think:medium` or `/t high` .
- That sticks for the current session (per-sender by default); cleared by `/think:off` or session idle reset.
2025-12-03 08:54:38 +00:00
- Confirmation reply is sent (`Thinking level set to high.` / `Thinking disabled.` ). If the level is invalid (e.g. `/thinking big` ), the command is rejected with a hint and the session state is left unchanged.
2026-01-08 03:22:14 +01:00
- Send `/think` (or `/think:` ) with no argument to see the current thinking level.
2025-12-03 08:45:30 +00:00
## Application by agent
2025-12-17 11:29:12 +01:00
- **Embedded Pi**: the resolved level is passed to the in-process Pi agent runtime.
2025-12-03 08:45:30 +00:00
2025-12-03 09:04:37 +00:00
## Verbose directives (/verbose or /v)
- Levels: `on|full` or `off` (default).
- Directive-only message toggles session verbose and replies `Verbose logging enabled.` / `Verbose logging disabled.` ; invalid levels return a hint without changing state.
2026-01-10 00:52:11 +01:00
- `/verbose off` stores an explicit session override; clear it via the Sessions UI by choosing `inherit` .
2025-12-03 09:04:37 +00:00
- Inline directive affects only that message; session/global defaults apply otherwise.
2026-01-08 03:22:14 +01:00
- Send `/verbose` (or `/verbose:` ) with no argument to see the current verbose level.
2026-01-03 12:33:42 +01:00
- When verbose is on, agents that emit structured tool results (Pi, other JSON agents) send each tool result back as its own metadata-only message, prefixed with `<emoji> <tool-name>: <arg>` when available (path/command); the tool output itself is not forwarded. These tool summaries are sent as soon as each tool finishes (separate bubbles), not as streaming deltas. If you toggle `/verbose on|off` while a run is in-flight, subsequent tool bubbles honor the new setting.
2025-12-03 09:04:37 +00:00
2026-01-07 06:16:38 +01:00
## Reasoning visibility (/reasoning)
2026-01-07 11:08:11 +01:00
- Levels: `on|off|stream` .
2026-01-10 00:02:13 +01:00
- Directive-only message toggles whether thinking blocks are shown in replies.
- When enabled, reasoning is sent as a **separate message** prefixed with `Reasoning:` .
2026-01-07 11:08:11 +01:00
- `stream` (Telegram only): streams reasoning into the Telegram draft bubble while the reply is generating, then sends the final answer without reasoning.
2026-01-07 06:16:38 +01:00
- Alias: `/reason` .
2026-01-08 03:22:14 +01:00
- Send `/reasoning` (or `/reasoning:` ) with no argument to see the current reasoning level.
2026-01-07 06:16:38 +01:00
2026-01-04 05:21:12 +00:00
## Related
2026-01-07 02:04:02 +01:00
- Elevated mode docs live in [`docs/elevated.md` ](/tools/elevated ).
2026-01-04 05:15:42 +00:00
2025-12-03 08:45:30 +00:00
## Heartbeats
2026-01-06 21:54:19 +00:00
- Heartbeat probe body is the configured heartbeat prompt (default: `Read HEARTBEAT.md if exists. Consider outstanding tasks. Checkup sometimes on your human during (user local) day time.` ). Inline directives in a heartbeat message apply as usual (but avoid changing session defaults from heartbeats).
2025-12-08 16:09:04 +00:00
## Web chat UI
- The web chat thinking selector mirrors the session's stored level from the inbound session store/config when the page loads.
- Picking another level applies only to the next message (`thinkingOnce` ); after sending, the selector snaps back to the stored session level.
- To change the session default, send a `/think:<level>` directive (as before); the selector will reflect it after the next reload.