You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add openai/chat-latest as an explicit direct API-key OpenAI model override, document the moving alias, and normalize unsupported Responses text verbosity for that model.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ Docs: https://docs.openclaw.ai
16
16
- Docs/iMessage: deprecate BlueBubbles for new OpenClaw setups, document the upstream server-release rationale, and point new iMessage deployments toward the native `imsg` path while keeping BlueBubbles as a supported legacy fallback.
17
17
- Discord/voice: make voice capture less choppy by extending the default post-speech silence grace to 2.5s, add `voice.captureSilenceGraceMs` for noisy Discord sessions, and tighten the spoken-output prompt around live STT fragments. Thanks @vincentkoc.
18
18
- Discord/streaming: default Discord replies to progress draft previews so tool/work activity appears in one edited Discord message unless `channels.discord.streaming.mode` is set to `off`.
19
+
- OpenAI: support `openai/chat-latest` as an explicit direct API-key model override for trying the moving ChatGPT Instant API alias without changing the stable default model.
19
20
- Plugins/install: add `npm-pack:<path.tgz>` installs so local npm pack artifacts run through the same managed npm-root install, lockfile verification, dependency scan, and install-record path as registry npm plugins.
20
21
- Codex app-server: disarm the short post-tool completion watchdog after current-turn activity, expose `appServer.turnCompletionIdleTimeoutMs`, and include raw assistant item context in idle-timeout diagnostics so status-only post-tool stalls stop failing as idle. Fixes #77984. Thanks @roseware-dev and @rubencu.
21
22
- Plugin skills/Windows: publish plugin-provided skill directories as junctions on Windows so standard users without Developer Mode can register plugin skills without symlink EPERM failures. Fixes #77958. (#77971) Thanks @hclsys and @jarro.
| ChatGPT/Codex subscription with native Codex runtime |`openai/gpt-5.5` plus `agentRuntime.id: "codex"`| Recommended Codex setup for most users. Sign in with `openai-codex` auth. |
34
34
| Direct API-key billing |`openai/gpt-5.5`| Set `OPENAI_API_KEY` or run OpenAI API-key onboarding. |
35
+
| Latest ChatGPT Instant API alias |`openai/chat-latest`| Direct API-key only. Moving alias for experiments, not the default. |
35
36
| ChatGPT/Codex subscription auth through PI |`openai-codex/gpt-5.5`| Use only when you intentionally want the normal PI runner. |
36
37
| Image generation or editing |`openai/gpt-image-2`| Works with either `OPENAI_API_KEY` or OpenAI Codex OAuth. |
37
38
| Transparent-background images |`openai/gpt-image-1.5`| Use `outputFormat=png` or `webp` and `openai.background=transparent`. |
@@ -165,6 +166,23 @@ Choose your preferred auth method and follow the setup steps.
165
166
}
166
167
```
167
168
169
+
To try ChatGPT's current Instant model from the OpenAI API, set the model
`chat-latest` is a moving alias. OpenAI documents it as the latest Instant
180
+
model used in ChatGPT and recommends `gpt-5.5` for production API usage, so
181
+
keep `openai/gpt-5.5` as the stable default unless you explicitly want that
182
+
alias behavior. The alias currently accepts only `medium` text verbosity, so
183
+
OpenClaw normalizes incompatible OpenAI text-verbosity overrides for this
184
+
model.
185
+
168
186
<Warning>
169
187
OpenClaw does **not** expose `openai/gpt-5.3-codex-spark`. Live OpenAI API requests reject that model, and the current Codex catalog does not expose it either.
0 commit comments