惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
B
Blog
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Jina AI
Jina AI
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
L
LangChain Blog
M
MIT News - Artificial intelligence
Blog — PlanetScale
Blog — PlanetScale
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
F
Fortinet All Blogs
H
Help Net Security
B
Blog RSS Feed
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
docs: clarify OpenAI GPT-5.5 auth routes · openclaw/openc...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

@@ -16,7 +16,16 @@ For model selection rules, see [/concepts/models](/concepts/models).

1616

- CLI helpers: `openclaw onboard`, `openclaw models list`, `openclaw models set <provider/model>`.

1717

- `models.providers.*.models[].contextWindow` is native model metadata; `contextTokens` is the effective runtime cap.

1818

- Fallback rules, cooldown probes, and session-override persistence: [Model failover](/concepts/model-failover).

19-

- OpenAI GPT model refs are canonical as `openai/<model>`. Legacy `openai-codex/<model>` and `codex/<model>` refs remain compatibility aliases for older configs and tests. For native Codex app-server execution, keep the model ref as `openai/gpt-*` and force `agents.defaults.embeddedHarness.runtime: "codex"` — see [Codex harness](/plugins/codex-harness).

19+

- OpenAI-family routes are prefix-specific: `openai/<model>` uses the direct

20+

OpenAI API-key provider in PI, `openai-codex/<model>` uses Codex OAuth in PI,

21+

and `openai/<model>` plus `agents.defaults.embeddedHarness.runtime: "codex"`

22+

uses the native Codex app-server harness. See [OpenAI](/providers/openai)

23+

and [Codex harness](/plugins/codex-harness).

24+

- GPT-5.5 is currently available through subscription/OAuth routes:

25+

`openai-codex/gpt-5.5` in PI or `openai/gpt-5.5` with the Codex app-server

26+

harness. The direct API-key route for `openai/gpt-5.5` is supported once

27+

OpenAI enables GPT-5.5 on the public API; until then use API-enabled models

28+

such as `openai/gpt-5.4` for `OPENAI_API_KEY` setups.

20292130

## Plugin-owned provider behavior

2231

@@ -55,7 +64,8 @@ OpenClaw ships with the pi‑ai catalog. These providers require **no**

5564

- Provider: `openai`

5665

- Auth: `OPENAI_API_KEY`

5766

- Optional rotation: `OPENAI_API_KEYS`, `OPENAI_API_KEY_1`, `OPENAI_API_KEY_2`, plus `OPENCLAW_LIVE_OPENAI_KEY` (single override)

58-

- Example models: `openai/gpt-5.5`, `openai/gpt-5.5-pro`

67+

- Example models: `openai/gpt-5.4`, `openai/gpt-5.4-mini`

68+

- GPT-5.5 direct API support is future-ready here once OpenAI exposes GPT-5.5 on the API

5969

- CLI: `openclaw onboard --auth-choice openai-api-key`

6070

- Default transport is `auto` (WebSocket-first, SSE fallback)

6171

- Override per model via `agents.defaults.models["openai/<model>"].params.transport` (`"sse"`, `"websocket"`, or `"auto"`)

@@ -72,7 +82,7 @@ OpenClaw ships with the pi‑ai catalog. These providers require **no**

72827383

```json5

7484

{

75-

agents: { defaults: { model: { primary: "openai/gpt-5.5" } } },

85+

agents: { defaults: { model: { primary: "openai/gpt-5.4" } } },

7686

}

7787

```

7888

@@ -97,22 +107,24 @@ OpenClaw ships with the pi‑ai catalog. These providers require **no**

9710798108

- Provider: `openai-codex`

99109

- Auth: OAuth (ChatGPT)

100-

- Canonical model ref: `openai/gpt-5.5`

101-

- Legacy model refs: `openai-codex/gpt-*`, `codex/gpt-*`

110+

- PI model ref: `openai-codex/gpt-5.5`

111+

- Native Codex app-server harness ref: `openai/gpt-5.5` with `agents.defaults.embeddedHarness.runtime: "codex"`

112+

- Legacy model refs: `codex/gpt-*`

102113

- CLI: `openclaw onboard --auth-choice openai-codex` or `openclaw models auth login --provider openai-codex`

103114

- Default transport is `auto` (WebSocket-first, SSE fallback)

104-

- Override per model via `agents.defaults.models["openai/<model>"].params.transport` (`"sse"`, `"websocket"`, or `"auto"`)

115+

- Override per PI model via `agents.defaults.models["openai-codex/<model>"].params.transport` (`"sse"`, `"websocket"`, or `"auto"`)

105116

- `params.serviceTier` is also forwarded on native Codex Responses requests (`chatgpt.com/backend-api`)

106117

- Hidden OpenClaw attribution headers (`originator`, `version`,

107118

`User-Agent`) are only attached on native Codex traffic to

108119

`chatgpt.com/backend-api`, not generic OpenAI-compatible proxies

109120

- Shares the same `/fast` toggle and `params.fastMode` config as direct `openai/*`; OpenClaw maps that to `service_tier=priority`

110-

- `openai/gpt-5.5` keeps native `contextWindow = 1000000` and a default runtime `contextTokens = 272000`; override the runtime cap with `models.providers.openai-codex.models[].contextTokens`

121+

- `openai-codex/gpt-5.5` keeps native `contextWindow = 1000000` and a default runtime `contextTokens = 272000`; override the runtime cap with `models.providers.openai-codex.models[].contextTokens`

111122

- Policy note: OpenAI Codex OAuth is explicitly supported for external tools/workflows like OpenClaw.

123+

- Current GPT-5.5 access uses this OAuth/subscription route until OpenAI enables GPT-5.5 on the public API.

112124113125

```json5

114126

{

115-

agents: { defaults: { model: { primary: "openai/gpt-5.5" } } },

127+

agents: { defaults: { model: { primary: "openai-codex/gpt-5.5" } } },

116128

}

117129

```

118130