#Is this the right place to put thinking default?

1 messages · Page 1 of 1 (latest)

blissful sentinel
#

Is this the right place to put thinking default?

"agents": {
"defaults": {
"workspace": "/root/.openclaw/workspace",
"thinkingDefault": "medium",
"embeddedPi": {
"executionContract": "strict-agentic"
},
"models": {
"openai-codex/gpt-5.4": {}
},
"model": {
"primary": "openai-codex/gpt-5.4"
},
"memorySearch": {
"enabled": true,
"provider": "gemini",
"remote": {
"apiKey": "${GEMINI_API_KEY}"
},
"fallback": "none",
"model": "gemini-embedding-001",
"outputDimensionality": 1536
}
},

gray waspBOT
white vaporBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

gray waspBOT
grim cargoBOT
#

Yep, that’s the right spot.

thinkingDefault lives at:

agents: {
  defaults: {
    thinkingDefault: "medium"
  }
}

That sets the global default for agents that don’t have their own override.

A few useful notes:

  • Per-agent override: agents.list[].thinkingDefault
  • Session override: /think medium