#Fastmode=true gpt 5.4
9 messages · Page 1 of 1 (latest)
Yep, but with one important catch:
Your Codex/ChatGPT subscription maps to openai-codex/gpt-5.4, not openai/gpt-5.4.
So the usual flow is:
- switch to the Codex OAuth model
/model openai-codex/gpt-5.4 - enable fast mode
/fast on
If you want it on by default, set:
{
agents: {
defaults: {
models: {
"openai-codex/gpt-5.4": {
params: {
fastMode: true,
},
},
},
},
},
}
If you're trying to use openai/gpt-5.4, that needs a direct OpenAI API key, not the Codex subscription.
Docs:
- https://docs.openclaw.ai/help/faq
- https://docs.openclaw.ai/tools/thinking
- https://docs.openclaw.ai/concepts/model-providers
If you want, paste your openclaw --version and openclaw models status, and I can sanity-check the exact setup.
What do fast mode exactly do
For GPT-5.4 in OpenClaw, fast mode is basically a priority-processing flag.
With openai-codex/gpt-5.4, /fast on makes OpenClaw send:
service_tier=priority
So, practically:
- It can reduce latency / make replies start faster
- It does not switch to a different model
- It does not increase intelligence/quality by itself
- It does not change reasoning or verbosity settings
- If you're going through a proxy instead of native OpenAI/Codex endpoints, it may do nothing
So I’d think of /fast as “please use the faster priority lane if this provider/account supports it”, not “turbo mode” in the model itself.