We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47cf267 commit 822bb7bCopy full SHA for 822bb7b
1 file changed
packages/opencode/src/plugin/codex.ts
@@ -360,13 +360,14 @@ export async function CodexAuthPlugin(input: PluginInput): Promise<Hooks> {
360
361
// Filter models to only allowed Codex models for OAuth
362
const allowedModels = new Set([
363
+ "gpt-5.1-codex",
364
"gpt-5.1-codex-max",
365
"gpt-5.1-codex-mini",
366
"gpt-5.2",
- "gpt-5.4",
367
"gpt-5.2-codex",
368
"gpt-5.3-codex",
369
- "gpt-5.1-codex",
+ "gpt-5.4",
370
+ "gpt-5.4-mini",
371
])
372
for (const modelId of Object.keys(provider.models)) {
373
if (modelId.includes("codex")) continue
0 commit comments