* refactor(codex-pool): remove redundant primary_first strategy * test(tools): update tool schema fixtures to pointer form * feat(create_image): route Codex pools through chain with member failover Codex pool chain entries now iterate pool members per the pool's own strategy (round_robin or priority_order) and fail over internally before the outer chain advances to the next entry. - ChatGPTOAuthRouter.GenerateImage implements NativeImageProvider: iterates orderedProviders, tries each member, advances round-robin state only on success, aggregates errors on pool exhaustion. - media_provider_chain.wrapPoolProvider wraps a *CodexProvider in a router when RoutingDefaults has extras or a non-primary-first strategy. Solo Codex (no extras) stays unwrapped. - Router exposes ProviderType() so chain telemetry records "chatgpt_oauth". Closes #1008 * feat(ui/builtin-tools): pool badge on create_image chain entries Chain entry card shows a read-only "Pool · <strategy>" badge when the entry's provider is a Codex pool base. Strategy label translates in en/vi/zh. No new toggle or selector — pool config lives on the provider itself. #1008 * refactor(providers): move Codex test helpers to providertest subpackage Addresses code-review High finding: NewTestCodexProviderFast and its staticTestTokenSource were exported from a non-_test.go file, compiling into the production binary. Relocating to internal/providers/providertest/ keeps the helper importable from other packages' tests without leaking test-only symbols into production. Also tightens wrapPoolProvider — pools with zero extra members no longer get wrapped in a router (KISS: nothing to rotate between). - Added CodexProvider.WithRetryConfig as a legitimate fluent option (the test helper now uses the public API). - Dropped the internal-package test helper file. #1008 * docs(pr-1006): add pool badge UI evidence Force-UI style capture of the read-only "Pool · Round-robin" badge on the create_image chain entry card when the selected provider carries settings.codex_pool with extras. Captured against staging gateway. * refactor(ui/builtin-tools): unify pool UX with Create Agent pattern The create_image chain Provider dropdown was listing pool members alongside pool owners, letting users accidentally bypass pool semantics by picking a member directly. Matches the pattern already used by Create Agent: hide pool members, show an inline "Pool" chip on owners. - Filter pool members from the chain Provider dropdown via getChatGPTOAuthPoolOwnership.ownerByMember. - Inline "Pool" chip on owner options, reusing the existing providers:list.poolBadge i18n key. - Drop the separate card-level "Pool · <strategy>" badge — the dropdown chip alone conveys the information without duplication. - Remove the now-unused isPoolProvider / poolStrategyOf helpers and the builtin.mediaChain.poolBadge* i18n keys we briefly introduced. #1008 * docs(pr-1006): add pool-filtered dropdown screenshot * fix(ui/builtin-tools): migrate stale pool-member chain entries on load Red-team blocker: a chain saved before the pool-aware UI landed may reference a pool member by name (e.g. openai-codex-2). After the dropdown started hiding members, such an entry produced: - empty Select trigger (no SelectItem matches the stored value) - conflicting Row 1 label still showing the member name - silent runtime misroute (bare solo call, no pool wrap) parseInitialEntries now consults getChatGPTOAuthPoolOwnership and rewrites any chain entry whose provider is a pool member to the owner's name + id. The next save persists the migrated value. Safe no-op for non-pool entries and for entries already pointing at an owner. Also memoize enabledProviders in the parent form so the card's useMemo boundaries actually hold (minor perf ding flagged by same review). * docs(pr-1006): refresh HTML evidence to match filter-based UX * fix(ui/agent-codex-pool): traffic policy reflects effective strategy under inherit On the agent's OpenAI Account Pool page, when Agent routing mode is Use Provider Defaults, the Traffic Policy buttons painted the draft's placeholder strategy ("priority_order") as selected — contradicting the top-of-page chip which already correctly shows the provider's effective strategy. The removal of primary_first in this PR unmasked the latent bug: the placeholder used to be a deprecated value that didn't match any live button, so nothing appeared selected. Derive selectedStrategy from defaultRouting when mode === "inherit": the button highlight now mirrors what actually runs. Buttons remain disabled in inherit mode (unchanged), but the displayed selection no longer misleads the user. * docs(pr-1006): add screenshot of inherit-mode Traffic Policy fix * fix(permissions): remove duplicate MethodSessionsCompact entry The writeExact slice listed MethodSessionsCompact twice. slices.Contains still returned correct results so runtime behavior is unchanged, but the duplicate entry was dead code. Spotted during review of PR #1006. --------- Co-authored-by: viettranx <edu@200lab.io>
13 KiB
12 - Extended Thinking
Overview
Extended thinking allows LLM providers to "think out loud" before producing a final response. When enabled, the model generates internal reasoning tokens that improve response quality for complex tasks at the cost of additional token usage and latency. GoClaw now supports both the legacy coarse thinking_level setting and a provider-first reasoning policy for capability-aware GPT-5/Codex control.
1. Configuration
The reusable default now lives on the provider in settings.reasoning_defaults. Agents consume that default by inheriting it, or store a custom override in top-level reasoning_config. thinking_level remains the backward-compatible coarse shim for older builds.
| Level | Behavior |
|---|---|
off |
Thinking disabled (default) |
low |
Minimal thinking — quick reasoning |
medium |
Moderate thinking — balanced reasoning |
high |
Maximum thinking — deep reasoning for complex tasks |
Provider default
{
"provider_type": "chatgpt_oauth",
"settings": {
"reasoning_defaults": {
"effort": "high",
"fallback": "provider_default"
}
}
}
Agent inherits provider default
{
"reasoning_config": {
"override_mode": "inherit"
}
}
Agent custom override
{
"thinking_level": "high",
"reasoning_config": {
"override_mode": "custom",
"effort": "xhigh",
"fallback": "downgrade"
}
}
Rules:
- Unset provider defaults and unset agent reasoning both resolve to
off. settings.reasoning_defaultsis provider-owned and reusable across agents.reasoning_config.override_modeacceptsinherit|custom.thinking_levelstill acceptsoff|low|medium|high.reasoning_config.effortacceptsoff|auto|none|minimal|low|medium|high|xhigh.reasoning_config.fallbackacceptsdowngrade|off|provider_default.- Existing legacy
other_config.reasoningpayloads withoutoverride_modeare treated as custom overrides for backward compatibility. - Read path resolves provider defaults first, then applies agent inherit/custom semantics, then falls back to legacy
thinking_level. - Write path keeps a derived coarse
thinking_levelonly for custom agent overrides so rollback to older GoClaw builds stays safe.
2. Provider Support
Each provider maps the normalized reasoning policy to its own implementation parameters.
flowchart TD
CONFIG["Provider defaults +<br/>agent inherit/custom"] --> CHECK{"Provider supports<br/>thinking?"}
CHECK -->|No| SKIP["Send request<br/>without thinking"]
CHECK -->|Yes| MAP{"Provider type?"}
MAP -->|Anthropic| ANTH["Budget tokens: 10,000<br/>Header: anthropic-beta<br/>Strip temperature"]
MAP -->|OpenAI-compat| OAI["Capability-aware effort<br/>or provider default"]
MAP -->|DashScope| DASH["enable_thinking: true<br/>Budget: 16,384 tokens<br/>⚠ Model-specific + tools limitation"]
MAP -->|Codex| CODEX["Capability-aware effort<br/>+ trace metadata"]
ANTH --> SEND["Send to LLM"]
OAI --> SEND
DASH --> SEND
CODEX --> SEND
Anthropic (Native)
| Thinking Level | Budget Tokens |
|---|---|
| low | 4,096 |
| medium | 10,000 |
| high | 32,000 |
When thinking is enabled:
- Adds
thinking: {type: "enabled", budget_tokens: N}to the request body - Sets
anthropic-beta: interleaved-thinking-2025-05-14header - Strips
temperatureparameter (Anthropic requirement — cannot use temperature with thinking) - Auto-adjusts
max_tokensto accommodate thinking budget (budget + 8,192 buffer)
OpenAI-Compatible and Codex (GPT-5 / Codex families)
Known GPT-5/Codex models use a static capability registry. The runtime resolves:
- requested effort
- actual effective effort
- fallback policy used
- whether the model default was used
- whether the source was the provider default or an agent override
If the model is known:
- supported efforts pass through unchanged
- unsupported efforts are normalized via
downgrade,off, orprovider_default automeans "use the model default effort"
If the model is unknown:
- explicit non-
autoeffort is passed through as requested autoleaves provider-default reasoning untouched
Reasoning content still streams in the provider-native format, and span metadata now records the source plus requested versus effective effort.
DashScope (Alibaba Qwen)
| Thinking Level | Budget Tokens |
|---|---|
| low | 4,096 |
| medium | 16,384 |
| high | 32,768 |
Enables thinking via enable_thinking: true plus a thinking_budget parameter.
Model-specific support: Only certain Qwen3 models accept the enable_thinking / thinking_budget parameters:
- Qwen3.5 series:
qwen3.5-plus,qwen3.5-turbo(thinking + vision) - Qwen3 hosted:
qwen3-max - Qwen3 open-weight:
qwen3-235b-a22b,qwen3-32b,qwen3-14b,qwen3-8b
Other models (e.g., qwen3-plus, qwen3-turbo) silently skip thinking injection to avoid API errors.
Important limitation: DashScope does not support streaming when tools are present. When an agent has tools enabled and thinking is active, the provider automatically falls back to non-streaming mode (single Chat() call) and synthesizes chunk callbacks to maintain the event flow.
Codex (ChatGPT OAuth Responses API)
Codex natively supports extended reasoning through its Responses API. Thinking and reasoning tokens are streamed as discrete reasoning events with summary fragments.
Token tracking: Reasoning token count is exposed in response.completed / response.incomplete events as OutputTokensDetails.ReasoningTokens and accessible via ChatResponse.Usage.ThinkingTokens.
Model metadata: /v1/providers/{id}/models is now the backend source of truth for the ChatGPT OAuth model list and any known reasoning capabilities.
3. Streaming
When thinking is active, reasoning content streams to the client alongside regular content.
flowchart TD
LLM["LLM generates response"] --> THINK["Thinking tokens<br/>(internal reasoning)"]
THINK --> CONTENT["Content tokens<br/>(final response)"]
THINK -->|Stream| CHUNK_T["StreamChunk<br/>Thinking: 'reasoning text...'"]
CONTENT -->|Stream| CHUNK_C["StreamChunk<br/>Content: 'response text...'"]
CHUNK_T --> CLIENT["Client receives<br/>thinking + content separately"]
CHUNK_C --> CLIENT
Provider-Specific Streaming Events
| Provider | Thinking Event | Content Event |
|---|---|---|
| Anthropic | thinking_delta in content blocks |
text_delta in content blocks |
| OpenAI-compat | reasoning_content in delta |
content in delta |
| DashScope | Same as OpenAI (when tools absent) | Same as OpenAI |
| Codex | reasoning items with text summaries |
content items |
Token Estimation
Thinking tokens are estimated as character_count / 4 for context window tracking. This rough estimate ensures the agent loop can account for thinking overhead when calculating context usage.
4. Tool Loop Handling
Extended thinking interacts with multi-turn tool conversations. When the LLM calls a tool and then needs to continue reasoning, thinking blocks must be preserved correctly across turns.
flowchart TD
TURN1["Turn 1: LLM thinks + calls tool"] --> PRESERVE["Preserve thinking blocks<br/>in raw assistant content"]
PRESERVE --> TOOL["Tool executes,<br/>result appended to history"]
TOOL --> TURN2["Turn 2: LLM receives history<br/>including preserved thinking blocks"]
TURN2 --> CONTINUE["LLM continues reasoning<br/>with full context"]
Anthropic Thinking Block Preservation
Anthropic requires thinking blocks (including their cryptographic signatures) to be echoed back in subsequent turns. GoClaw handles this through RawAssistantContent:
- During streaming, raw content blocks are accumulated — including
thinkingtype blocks with theirsignaturefields - When the assistant message is appended to history, the raw blocks are preserved
- On the next LLM call, these blocks are sent back as-is, ensuring the API can validate thinking continuity
This is critical for correctness: if thinking blocks are dropped or modified, the Anthropic API may reject the request or produce degraded responses.
Other Providers
OpenAI-compatible providers handle thinking/reasoning content as metadata. The reasoning_content is accumulated during streaming but does not require special passback handling — each turn's reasoning is independent.
5. Limitations
| Provider | Limitation |
|---|---|
| DashScope | Cannot stream when tools are present — falls back to non-streaming mode. Only specific Qwen3 models support thinking. |
| Codex | Reasoning tokens tracked via API response (not in streaming chunks themselves) |
| Anthropic | Temperature parameter stripped when thinking is enabled |
| All | Thinking tokens count against the context window budget |
| All | Thinking increases latency and cost proportional to the budget level |
| GPT-5/Codex unknown models | GoClaw allows explicit effort passthrough but does not claim a capability contract |
6. Reasoning Content Stripping (Phase 6 — OpenClaw TS port)
Some models emit chain-of-thought reasoning tokens even when effort="off" is specified. To prevent that raw CoT from reaching end users, GoClaw supports a StripThinking flag on ReasoningDecision.
Models Known to Leak CoT
Auto-flagged via modelLeaksReasoning(model) in internal/providers/reasoning_resolution.go:
- Kimi family: any model name containing
kimi(case-insensitive, e.g.kimi-k2,moonshot/kimi-k2-thinking) - DeepSeek-Reasoner: any model name containing
deepseek-reasoner
The allowlist is a simple substring check — extendable as new leaky models appear.
Auto-Enable Flow
ResolveReasoningDecisionruns its normal flow, then adeferchecks: ifEffectiveEffort == "off" && modelLeaksReasoning(model), it setsdecision.StripThinking = true.- The agent loop (
loop_pipeline_callbacks.go) readsdecision.StripThinkingand propagates it intochatReq.Options[providers.OptStripThinking] = true. - Each provider's streaming handler reads
OptStripThinkingfrom options at the top ofChatStream/Chatand applies guard clauses.
Implementation Per Provider
- Anthropic (
anthropic_stream.go,anthropic.go):thinking_deltaevents skipresult.Thinkingaccumulation AND theonChunkemit when stripping, butthinkingCharsstill increments soUsage.ThinkingTokensstays billable.RawAssistantContent(content blocks for tool-use passback) is never touched. Non-streamingChat()clearsresp.Thinkingpost-parse. - OpenAI (
openai_chat.go): streaming guardsreasoning/reasoning_contentdelta accumulation; non-streaming clearsresp.Thinkingpost-parse.Usage.ThinkingTokensread from the usage chunk independently. - Codex (
codex.go):processSSEEventtakes an extrastripThinking boolparam; thereasoningitem case skips summary text appending when set. Usage still extracted fromresponse.completed. - DashScope: inherits both guards via
OpenAIProviderembedding — no separate implementation needed.
Invariants Preserved
| Field | Stripping effect | Rationale |
|---|---|---|
ChatResponse.Thinking |
Cleared | User-visible output |
Usage.ThinkingTokens |
Unchanged | Billing accuracy (Phase 1 depends on it) |
RawAssistantContent |
Unchanged | Anthropic tool-use replay requires raw thinking blocks |
onChunk(StreamChunk{Thinking}) |
Not emitted | Streaming UI display |
7. Observability
Each LLM span can now include a metadata.reasoning section with:
sourcerequested_efforteffective_effortfallbackreasonsupported_levelsused_provider_default
This makes silent downgrades or provider-default decisions visible in traces instead of leaving them implicit.
File Reference
| Module | Path | Purpose |
|---|---|---|
| Provider types & reasoning | internal/providers/types.go, internal/providers/reasoning_capability.go, internal/providers/reasoning_resolution.go, internal/providers/reasoning_observation.go |
ThinkingCapable interface, GPT-5/Codex capability registry, reasoning decision engine, trace metadata |
| Anthropic thinking | internal/providers/anthropic.go, internal/providers/anthropic_stream.go, internal/providers/anthropic_request.go |
Budget mapping, beta header, thinking_delta streaming, block preservation for tool loops |
| OpenAI-compat, DashScope & Codex | internal/providers/openai.go, internal/providers/dashscope.go, internal/providers/codex.go |
Reasoning effort mapping, DashScope tools+streaming fallback, Codex reasoning event streaming |
Use grep or your editor's symbol search for specific files.
Cross-References
| Document | Relevant Content |
|---|---|
| 02-providers.md | Provider architecture, supported providers |
| 01-agent-loop.md | LLM iteration loop, streaming chunk handling |