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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ Docs: https://docs.openclaw.ai
6
6
7
7
### Changes
8
8
9
+
- Chat commands: add `/think default` and `/fast default` to clear session overrides and inherit configured/provider defaults.
9
10
- Docker: run the runtime image under `tini` so long-lived containers reap orphaned child processes and forward signals correctly. (#77885) Thanks @VintageAyu.
10
11
- Google/Gemini: normalize retired `google/gemini-3-pro-preview` and `google-gemini-cli/gemini-3-pro-preview` selections to `google/gemini-3.1-pro-preview` before they are written to model config.
11
12
- Amazon Bedrock: support `serviceTier` parameter for Bedrock models, configurable via `agents.defaults.params.serviceTier` or per-model in `agents.defaults.models`. Valid values: `default`, `flex`, `priority`, `reserved`. (#64512) Thanks @mobilinkd.
Copy file name to clipboardExpand all lines: docs/tools/slash-commands.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -135,10 +135,10 @@ Current source-of-truth:
135
135
136
136
</Accordion>
137
137
<Accordiontitle="Model and run controls">
138
-
- `/think <level>` sets the thinking level. Options come from the active model's provider profile; common levels are `off`, `minimal`, `low`, `medium`, and `high`, with custom levels such as `xhigh`, `adaptive`, `max`, or binary `on` only where supported. Aliases: `/thinking`, `/t`.
138
+
- `/think <level|default>` sets the thinking level or clears the session override. Options come from the active model's provider profile; common levels are `off`, `minimal`, `low`, `medium`, and `high`, with custom levels such as `xhigh`, `adaptive`, `max`, or binary `on` only where supported. Aliases: `/thinking`, `/t`.
Copy file name to clipboardExpand all lines: docs/tools/thinking.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,8 @@ title: "Thinking levels"
48
48
## Setting a session default
49
49
50
50
- Send a message that is **only** the directive (whitespace allowed), e.g. `/think:medium` or `/t high`.
51
-
- That sticks for the current session (per-sender by default); cleared by `/think:off` or session idle reset.
51
+
- That sticks for the current session (per-sender by default). Use `/think default` to clear the session override and inherit the configured/provider default; aliases include `inherit`, `clear`, `reset`, and `unpin`.
52
+
-`/think off` stores an explicit off override. It disables thinking until you change or clear the session override.
52
53
- 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.
53
54
- Send `/think` (or `/think:`) with no argument to see the current thinking level.
54
55
@@ -59,11 +60,11 @@ title: "Thinking levels"
59
60
60
61
## Fast mode (/fast)
61
62
62
-
- Levels: `on|off`.
63
-
- Directive-only message toggles a session fast-mode override and replies `Fast mode enabled.` / `Fast mode disabled.`.
63
+
- Levels: `on|off|default`.
64
+
- Directive-only message toggles a session fast-mode override and replies `Fast mode enabled.` / `Fast mode disabled.`. Use `/fast default` to clear the session override and inherit the configured default; aliases include `inherit`, `clear`, `reset`, and `unpin`.
64
65
- Send `/fast` (or `/fast status`) with no mode to see the current effective fast-mode state.
65
66
- OpenClaw resolves fast mode in this order:
66
-
1. Inline/directive-only `/fast on|off`
67
+
1. Inline/directive-only `/fast on|off` override (`/fast default` clears this layer)
0 commit comments