feat(pi): point Pi at the Codex subscription

Switch the default provider from Anthropic to OpenAI and the default
model to gpt-5.3-codex, so Pi runs on a ChatGPT Plus/Pro (Codex)
subscription. The OAuth login stays unmanaged in ~/.pi/agent/auth.json,
as before.
This commit is contained in:
2026-07-28 22:36:32 -04:00
parent f218e47814
commit 3e3975c724

View File

@@ -19,9 +19,9 @@ in
enable = true; enable = true;
settings = { settings = {
defaultProvider = "anthropic"; defaultProvider = "openai";
# Pi's catalogue id for Opus. # Pi's catalogue id for OpenAI's Codex model, served by the ChatGPT subscription.
defaultModel = "claude-opus-4-8"; defaultModel = "gpt-5.3-codex";
enableAnalytics = false; enableAnalytics = false;
}; };
}; };