feat(codex): add GPT-5.6 sol/terra/luna models#384
Merged
Conversation
Add the GPT-5.6 model family (gpt-5.6-sol, gpt-5.6-terra, gpt-5.6-luna) to the Codex adapter's model list and make gpt-5.6-terra the default (5.5-class quality at lower cost). Register the 5.6 context window (272000) so the context panel reports usage correctly instead of falling back to 200000. Verified the bundled @openai/codex 0.144.4 binary already recognizes all three model ids.
Contributor
|
This issue has been resolved in version 2.47.0-beta.1 (main). To update, run: -- Clay Deploy Bot Build anything, with anyone, in one place. |
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.
Summary
Adds the GPT-5.6 model family (released 2026-07-09) to the Codex adapter so users can select the new tiers, and makes
gpt-5.6-terrathe default (5.5-class quality at ~2x lower cost).Changes
lib/yoke/adapters/codex.jsgpt-5.6-terra,gpt-5.6-sol,gpt-5.6-lunatoCODEX_MODELS(older ids kept as selectable options)defaultModelfromgpt-5.5togpt-5.6-terralib/public/modules/app-panels.jsgpt-5.6context window (272000) inKNOWN_CONTEXT_WINDOWSso the context panel reports usage correctly instead of the 200000 fallbackModel tiers
gpt-5.6-solgpt-5.6-terragpt-5.6-lunaVerification
@openai/codex0.144.4 native binary contains all threegpt-5.6-*model id strings, confirming the CLI recognizes them (support landed in codex 0.143.0).Notes
codex.jsinternal subagent still usesgpt-5.4-mini(valid, unchanged; could move togpt-5.6-lunalater).