Documentation Index
Fetch the complete documentation index at: https://docs.wednesdayai.dev/llms.txt
Use this file to discover all available pages before exploring further.
OpenAI
WednesdayAI supports the full OpenAI model family: GPT-4o, o3, o1, and the Codex coding models. Authentication is either an API key or, for Codex subscribers, an OAuth flow.API key authentication
Obtain an API key from platform.openai.com → API keys.| Source | Key / path |
|---|---|
| Environment variable | OPENAI_API_KEY |
| Stored credential | ~/.openclaw/credentials/openai |
Codex subscription (OAuth)
If you have an active ChatGPT Plus or Team subscription, you can authenticate with your account directly — no API key needed.~/.openclaw/credentials/openai-codex.
Codex models are only available to authenticated subscribers. Attempting to use a Codex model ID with a standard API key returns a 404.
Selecting a model
| Model | ID |
|---|---|
| GPT-4o | gpt-4o |
| GPT-4o mini | gpt-4o-mini |
| o3 | o3 |
| o1 | o1 |
| Codex | codex |
openclaw status --providers to list every model available on your key or subscription.
Key rotation
Pass multiple keys as a comma-separated list to distribute load:Troubleshooting
401 Unauthorized
401 Unauthorized
429 Rate limited
429 Rate limited
You have hit your tier rate limits. Add a second API key (see Key rotation) or upgrade your OpenAI plan.
Codex OAuth session expired
Codex OAuth session expired
Re-run
openclaw models auth login --provider openai-codex to refresh the token.Model not available on this key
Model not available on this key
Some models (o3, o1) require specific API access tiers. Check your access at platform.openai.com/limits.