


























@@ -658,26 +658,27 @@ Quick answers plus deeper troubleshooting for real-world setups (local dev, VPS,
658658</Accordion>
659659660660<Accordion title="How does Codex auth work?">
661-OpenClaw supports **OpenAI Code (Codex)** via OAuth (ChatGPT sign-in). Onboarding can run the OAuth flow and will set the default model to `openai-codex/gpt-5.5` when appropriate. See [Model providers](/concepts/model-providers) and [Onboarding (CLI)](/start/wizard).
661+OpenClaw supports **OpenAI Code (Codex)** via OAuth (ChatGPT sign-in). New model refs should use the canonical `openai/gpt-5.5` path; `openai-codex/gpt-*` remains a legacy compatibility alias. See [Model providers](/concepts/model-providers) and [Onboarding (CLI)](/start/wizard).
662662</Accordion>
663663664-<Accordion title="Why does ChatGPT GPT-5.5 not unlock openai/gpt-5.5 in OpenClaw?">
665-OpenClaw treats the two routes separately:
664+<Accordion title="Why does OpenClaw still mention openai-codex?">
665+`openai-codex` is still the internal auth/profile provider id for ChatGPT/Codex OAuth. The model ref should be canonical OpenAI:
666666667-- `openai-codex/gpt-5.5` = ChatGPT/Codex OAuth
668-- `openai/gpt-5.5` = direct OpenAI Platform API
667+- `openai/gpt-5.5` = canonical GPT-5.5 model ref
668+- `openai-codex/gpt-5.5` = legacy compatibility alias
669+- `openai-codex:...` = auth profile id, not a model ref
669670670-In OpenClaw, ChatGPT/Codex sign-in is wired to the `openai-codex/*` route,
671-not the direct `openai/*` route. If you want the direct API path in
672-OpenClaw, set `OPENAI_API_KEY` (or the equivalent OpenAI provider config).
673-If you want ChatGPT/Codex sign-in in OpenClaw, use `openai-codex/*`.
671+If you want the direct OpenAI Platform billing/limit path, set
672+`OPENAI_API_KEY`. If you want ChatGPT/Codex subscription auth, sign in with
673+`openclaw models auth login --provider openai-codex` and keep model refs on
674+`openai/*` in new configs.
674675675676</Accordion>
676677677678<Accordion title="Why can Codex OAuth limits differ from ChatGPT web?">
678-`openai-codex/*` uses the Codex OAuth route, and its usable quota windows are
679-OpenAI-managed and plan-dependent. In practice, those limits can differ from
680-the ChatGPT website/app experience, even when both are tied to the same account.
679+Codex OAuth uses OpenAI-managed, plan-dependent quota windows. In practice,
680+those limits can differ from the ChatGPT website/app experience, even when
681+both are tied to the same account.
681682682683OpenClaw can show the currently visible provider usage/quota windows in
683684`openclaw models status`, but it does not invent or normalize ChatGPT-web
@@ -2344,8 +2345,8 @@ Quick answers plus deeper troubleshooting for real-world setups (local dev, VPS,
23442345<Accordion title="Can I use GPT 5.5 for daily tasks and Codex 5.5 for coding?">
23452346Yes. Set one as default and switch as needed:
234623472347-- **Quick switch (per session):** `/model gpt-5.5` for daily tasks, `/model openai-codex/gpt-5.5` for coding with Codex OAuth.
2348-- **Default + switch:** set `agents.defaults.model.primary` to `openai/gpt-5.5`, then switch to `openai-codex/gpt-5.5` when coding (or the other way around).
2348+- **Quick switch (per session):** `/model gpt-5.5` for daily tasks, or keep the same model and switch auth/profile as needed.
2349+- **Default:** set `agents.defaults.model.primary` to `openai/gpt-5.5`.
23492350- **Sub-agents:** route coding tasks to sub-agents with a different default model.
2350235123512352See [Models](/concepts/models) and [Slash commands](/tools/slash-commands).
@@ -2355,9 +2356,9 @@ Quick answers plus deeper troubleshooting for real-world setups (local dev, VPS,
23552356<Accordion title="How do I configure fast mode for GPT 5.5?">
23562357Use either a session toggle or a config default:
235723582358-- **Per session:** send `/fast on` while the session is using `openai/gpt-5.5` or `openai-codex/gpt-5.5`.
2359+- **Per session:** send `/fast on` while the session is using `openai/gpt-5.5`.
23592360- **Per model default:** set `agents.defaults.models["openai/gpt-5.5"].params.fastMode` to `true`.
2360-- **Codex OAuth too:** if you also use `openai-codex/gpt-5.5`, set the same flag there.
2361+- **Legacy aliases:** older `openai-codex/gpt-*` entries can keep their own params, but new configs should put params on `openai/gpt-*`.
2361236223622363Example:
23632364@@ -2371,11 +2372,6 @@ Quick answers plus deeper troubleshooting for real-world setups (local dev, VPS,
23712372 fastMode: true,
23722373 },
23732374 },
2374- "openai-codex/gpt-5.5": {
2375- params: {
2376- fastMode: true,
2377- },
2378- },
23792375 },
23802376 },
23812377 },
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。