fix(openai): use codex context limits for gpt-5.6#36248
Open
nabilfreeman wants to merge 4 commits into
Open
Conversation
Contributor
Author
|
@rekram1-node tagging you because I know you worked on adding 5.6 yesterday to models.dev. |
Contributor
Author
|
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 |
Contributor
|
Thanks for updating your PR! It now meets our contributing guidelines. 👍 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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