feat(model-overlays): add gpt-5.6 overlay + resolver mapping#2245
Open
chrisquorum wants to merge 1 commit into
Open
feat(model-overlays): add gpt-5.6 overlay + resolver mapping#2245chrisquorum wants to merge 1 commit into
chrisquorum wants to merge 1 commit into
Conversation
Give gpt-5.6 (Sol/Terra/Luna) a dedicated overlay instead of the generic gpt fallback: inherits the gpt base plus the anti-verbosity / shortest-form tuning. Mirrors gpt-5.4. Adds the models.ts resolver mapping (handles the tier suffixes) and updates the doc comment.
|
Merging to
After your PR is submitted to the merge queue, this comment will be automatically updated with its status. If the PR fails, failure details will also be posted here |
Contributor
|
honestly not needed. just because in my testing i havent seen a marginal difference in how opus 4.8 behaves. might be needed for fable |
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.
What
OpenAI's current flagship is GPT-5.6 (tiers: Sol / Terra / Luna), generally
available across ChatGPT, Codex, and the API since ~2026-07-09. Today
gpt-5.6*resolves through
models.tsto the genericgptoverlay, missing the GPT-5.xfamily's anti-verbosity tuning. This adds a dedicated
gpt-5.6overlay so itinherits the
gptbase plus the terse-output layer — the same treatmentgpt-5.4already gets.Changes
model-overlays/gpt-5.6.md(new) —{{INHERIT:gpt}}+ the anti-verbosity /shortest-form-answer nudges (mirrors
gpt-5.4.md).scripts/models.ts— addgpt-5.6toALL_MODEL_NAMESand aresolveModelmapping (
/^gpt-5\.6(-|$)/ → gpt-5.6, matching the Sol/Terra/Luna tiersuffixes), placed before the generic
gptfallback; doc-comment updated.Notes
gpt-5.4's family nudges — a family-inheritance overlay, notempirically re-tuned for 5.6. Retune as 5.6-specific patterns emerge.
gpt-5.4precedent: no dedicated overlay test (thegpt-*overlays don't carry one; the
opus-*overlays do). Resolver + generated-docbehavior is validated below.
Validation
resolveModel('gpt-5.6'),'gpt-5.6-sol','gpt-5.6-terra'→gpt-5.6;gpt-5.4,gpt-4o, and baregptunchanged.gpt-5.6overlay inherits thegptbase (Completion bias) andcarries the
Anti-verbosity protocol, with no unresolved{{INHERIT:...}}.bun run gen:skill-docs→ no generated-doc churn (only the two files above);the docs-freshness CI gate stays green.
bun run typecheck→ no new errors in the changed files.