From e2d8310b76aebf0b0b47256da343079ce843315f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 24 Jan 2026 05:12:45 +0000 Subject: [PATCH] chore: generate --- packages/opencode/src/plugin/codex.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/opencode/src/plugin/codex.ts b/packages/opencode/src/plugin/codex.ts index 4e470a554..198e8ce25 100644 --- a/packages/opencode/src/plugin/codex.ts +++ b/packages/opencode/src/plugin/codex.ts @@ -355,7 +355,13 @@ export async function CodexAuthPlugin(input: PluginInput): Promise { if (auth.type !== "oauth") return {} // Filter models to only allowed Codex models for OAuth - const allowedModels = new Set(["gpt-5.1-codex-max", "gpt-5.1-codex-mini", "gpt-5.2", "gpt-5.2-codex", "gpt-5.1-codex"]) + const allowedModels = new Set([ + "gpt-5.1-codex-max", + "gpt-5.1-codex-mini", + "gpt-5.2", + "gpt-5.2-codex", + "gpt-5.1-codex", + ]) for (const modelId of Object.keys(provider.models)) { if (!allowedModels.has(modelId)) { delete provider.models[modelId]