Skip to content

Commit cc82560

Browse files
committed
config: use gpt-5.2-codex (5.3 not available via API key yet)
1 parent ce5f0c0 commit cc82560

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pi/skills/control-agent/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Pick the model based on which API key is available (check env vars in this order
9595
| API key | Model |
9696
|---------|-------|
9797
| `ANTHROPIC_API_KEY` | `anthropic/claude-opus-4-6` |
98-
| `OPENAI_API_KEY` | `openai/gpt-5.3-codex` |
98+
| `OPENAI_API_KEY` | `openai/gpt-5.2-codex` |
9999
| `GEMINI_API_KEY` | `google/gemini-3-pro-preview` |
100100
| `OPENCODE_ZEN_API_KEY` | `opencode-zen/claude-opus-4-6` |
101101

start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export PI_SESSION_NAME="control-agent"
4040
if [ -n "${ANTHROPIC_API_KEY:-}" ]; then
4141
MODEL="anthropic/claude-opus-4-6"
4242
elif [ -n "${OPENAI_API_KEY:-}" ]; then
43-
MODEL="openai/gpt-5.3-codex"
43+
MODEL="openai/gpt-5.2-codex"
4444
elif [ -n "${GEMINI_API_KEY:-}" ]; then
4545
MODEL="google/gemini-3-pro-preview"
4646
elif [ -n "${OPENCODE_ZEN_API_KEY:-}" ]; then

0 commit comments

Comments
 (0)