Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion docs/authentication-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -481,9 +481,15 @@ export OPENAI_API_KEY="sk-..."

sudo awf \
--allow-domains api.openai.com \
"codex --prompt 'Hello world'"
"codex --model gpt-5.3-codex --prompt 'Hello world'"
```

Use an explicit model such as `gpt-5.3-codex` rather than Codex's `auto` model
alias. `auto` depends on ChatGPT-authenticated remote model/plugin metadata
resolution, which API-key based proxy routing cannot use even when
`chatgpt.com` is allowed, so `auto` can fail with `The requested model is not
supported` (see [docs/api-proxy-sidecar.md](api-proxy-sidecar.md#codex-openai-example)).

**Example 3: Using both providers**

```bash
Expand Down
Loading