fix(openai): use codex context limits for gpt-5.6#36248
Conversation
|
@rekram1-node tagging you because I know you worked on adding 5.6 yesterday to models.dev. |
|
Correction on the limit mapping: we initially interpreted Comparing it with GPT-5.5 clarified the convention. Codex reports This PR now follows the same mapping for GPT-5.6: The correction is in |
|
Thanks for updating your PR! It now meets our contributing guidelines. 👍 |
|
note: context limits for codex plans have been lowered to gpt-5.5 levels: https://x.com/thsottiaux/status/2076495156757577895?s=20 for the next "few days" |
🥲🥲🥲🥲🥲🥲🥲🥲🥲🥲🥲 This reinforces the need to remotely configure the codex limits à la anomalyco/models.dev#3183 |
Issue for this PR
Closes #36247
Type of change
What does this PR do?
OpenCode inherits the direct API's 1.05M limits for GPT-5.6 even when OpenAI authentication routes requests through Codex OAuth. The Codex catalog reports a 372K input budget for Sol, Terra, and Luna.
This extends the existing GPT-5.5 OAuth override to use
context: 500000,input: 372000, andoutput: 128000for all three GPT-5.6 models. API-key authentication continues using the direct API metadata unchanged.How did you verify your code works?
bun test test/plugin/codex.test.ts(17 pass)bun typecheckfrompackages/opencodebun turbo typecheck(30 successful)Screenshots / recordings
Not applicable; this is a provider metadata fix with no UI changes.
Checklist