codex - 💡(How to fix) Fix Windows Codex App no longer shows gpt-5.5 after reinstall; CLI still has access [3 comments, 3 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
openai/codex#20821Fetched 2026-05-03 04:44:51
View on GitHub
Comments
3
Participants
3
Timeline
6
Reactions
0
Author
Timeline (top)
commented ×3labeled ×3

Error Message

Before I changed my config back to gpt-5.4, my Codex config still pointed to gpt-5.5. When I tried to use the app, I got this error: {"type":"error","status":400,"error":{"type":"invalid_request_error","message":"The 'gpt-5.5' model requires a newer version of Codex. Please upgrade to the latest app or CLI and try again."}} {"type":"error","status":400,"error":{"type":"invalid_request_error","message":"The 'gpt-5.5' model requires a newer version of Codex. Please upgrade to the latest app or CLI and try again."}}

  • Changed config.toml from model = "gpt-5.5" to model = "gpt-5.4" to avoid the startup error.

Root Cause

This looks like a Windows Codex App model-picker / app-version-gating issue, not an account entitlement issue, because gpt-5.5 still works in Codex CLI on the same machine and account.

Fix Action

Fix / Workaround

{"type":"error","status":400,"error":{"type":"invalid_request_error","message":"The 'gpt-5.5' model requires a newer version of Codex. Please upgrade to the latest app or CLI and try again."}}

{"type":"error","status":400,"error":{"type":"invalid_request_error","message":"The 'gpt-5.5' model requires a newer version of Codex. Please upgrade to the latest app or CLI and try again."}}

RAW_BUFFERClick to expand / collapse

What version of the Codex App are you using (From “About Codex” dialog)?

26.429.3425.0 Package: OpenAI.Codex_26.429.3425.0_x64__2p2nqsd0c76g0 Installed via Microsoft Store / winget msstore.

What subscription do you have?

ChatGPT Plus

What platform is your computer?

Windows x64

What issue are you seeing?

After uninstalling and reinstalling the native Windows Codex App today, gpt-5.5 disappeared from the app's model picker.

My account definitely still has access to gpt-5.5. I have used gpt-5.5 in Codex since day one of release, and it was previously available in this same Windows Codex App. gpt-5.5 still works through Codex CLI on the same PC and same account.

Before I changed my config back to gpt-5.4, my Codex config still pointed to gpt-5.5. When I tried to use the app, I got this error:

{"type":"error","status":400,"error":{"type":"invalid_request_error","message":"The 'gpt-5.5' model requires a newer version of Codex. Please upgrade to the latest app or CLI and try again."}}

However, the app appears to already be on the latest Microsoft Store version:

OpenAI.Codex 26.429.3425.0 OpenAI.Codex_26.429.3425.0_x64__2p2nqsd0c76g0

winget upgrade Codex -s msstore reports:

No available upgrade found. No newer package versions are available from the configured sources.

This looks like a Windows Codex App model-picker / app-version-gating issue, not an account entitlement issue, because gpt-5.5 still works in Codex CLI on the same machine and account.

What steps can reproduce the bug?

Uploaded thread: f858b2cf-3c00-4996-a6a2-60f8e92dddc4

Steps:

  1. Use an account that has access to gpt-5.5.
  2. Verify that gpt-5.5 works in Codex CLI on the same Windows machine.
  3. Install or reinstall the native Windows Codex App from Microsoft Store / winget msstore.
  4. Open the Windows Codex App and sign into the same account.
  5. Open the model picker.
  6. Observe that gpt-5.5 is missing from the model picker.
  7. If config.toml still contains model = "gpt-5.5", try using the app.
  8. The app returns:

{"type":"error","status":400,"error":{"type":"invalid_request_error","message":"The 'gpt-5.5' model requires a newer version of Codex. Please upgrade to the latest app or CLI and try again."}}

Expected result: gpt-5.5 should appear in the Windows Codex App model picker, as it did before reinstalling the app.

Actual result: gpt-5.5 is missing from the Windows Codex App model picker, even though it works in Codex CLI on the same PC/account.

What is the expected behavior?

No response

Additional information

Troubleshooting already tried:

  • Reinstalled the Windows Codex App.
  • Reset/cleared app cache.
  • Changed config.toml from model = "gpt-5.5" to model = "gpt-5.4" to avoid the startup error.
  • Confirmed installed app package version:

Name Version PackageFullName OpenAI.Codex 26.429.3425.0 OpenAI.Codex_26.429.3425.0_x64__2p2nqsd0c76g0

  • Confirmed winget sees the same version:

Name Id Version Source Codex 9PLM9XGG6VKS 26.429.3425.0 msstore

  • Confirmed there is no Store update available:

winget upgrade Codex -s msstore No available upgrade found. No newer package versions are available from the configured sources.

  • Tried aggressive local reset:

Get-Process Codex -ErrorAction SilentlyContinue | Stop-Process -Force

Rename-Item "$env:LOCALAPPDATA\Packages\OpenAI.Codex_2p2nqsd0c76g0" "OpenAI.Codex_2p2nqsd0c76g0.bak" -ErrorAction SilentlyContinue Rename-Item "$env:USERPROFILE.cache\codex-runtimes" "codex-runtimes.bak2" -ErrorAction SilentlyContinue Rename-Item "$env:USERPROFILE.codex.tmp" ".tmp.bak2" -ErrorAction SilentlyContinue

None of this restored gpt-5.5 in the Windows Codex App model picker.

extent analysis

TL;DR

The issue might be resolved by waiting for an update to the Windows Codex App that correctly supports gpt-5.5, as the error message suggests a version mismatch despite the app being on the latest available version.

Guidance

  • Verify that the account indeed has access to gpt-5.5 and that it works through the Codex CLI to rule out any account or entitlement issues.
  • Check the Microsoft Store or winget for any updates to the Codex App, even if winget upgrade reports no available upgrades, as the Store might have a delayed update.
  • Consider reaching out to the OpenAI support team for further assistance, as the issue seems to be related to the app's version gating mechanism.
  • If possible, try installing an older version of the Codex App (if available) to see if gpt-5.5 was available in previous versions, though this might not be feasible through the Microsoft Store.

Example

No specific code example is applicable in this scenario, as the issue appears to be related to the application's versioning and model support rather than a coding error.

Notes

The exact cause of the issue is unclear, but it seems to be related to a mismatch between the version of the Codex App and the required version for gpt-5.5. The fact that gpt-5.5 works through the CLI but not the app suggests a specific issue with the Windows Codex App's model picker or version gating.

Recommendation

Apply workaround: Continue using gpt-5.5 through the Codex CLI until an update to the Windows Codex App is available that correctly supports gpt-5.5, as indicated by the error message suggesting a need for a newer app version.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING