models: gpt-5.6-sol is the default; decommission gpt-5.4-pro and older - #1
Open
espenale wants to merge 1 commit into
Open
models: gpt-5.6-sol is the default; decommission gpt-5.4-pro and older#1espenale wants to merge 1 commit into
espenale wants to merge 1 commit into
Conversation
…ro and older InitialForce policy (Espen, 2026-07-17): gpt-5.6-sol is the default oracle model, and gpt-5.4-pro and everything older are decommissioned (removed from the OpenAI model list so they can't be selected). - config.py: DEFAULT_MODEL fallback "auto" -> "gpt-5.6-sol" (set DEFAULT_MODEL=auto to restore per-task auto-selection). No PAL python hardcodes an old model name (grep-verified), so nothing breaks. - conf/openai_models.json: removed gpt-5.4-pro, gpt-5.4, gpt-5.3-codex, gpt-5.2-pro, gpt-5.2, gpt-5.1-codex, gpt-5.1-codex-mini, gpt-5, gpt-5-mini, gpt-5-nano, gpt-5-codex, gpt-4.1, o3, o3-mini, o3-pro, o4-mini. KEPT the current generation: gpt-5.5, gpt-5.5-pro, gpt-5.6-sol, gpt-5.6-terra, gpt-5.6-luna. (Gemini/xAI/other providers untouched.) - .claude/CLAUDE.md: startup-guidance model examples updated off the decommissioned names. Scoped to the InitialForce fork. @oysteinkrog — you MOD this fork, so flagging for your review before it goes live fleet-wide (the config.py default flip from auto->fixed is the main behavior change; adjust the exact decommission cut if you want a different boundary). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
oysteinkrog
reviewed
Jul 17, 2026
oysteinkrog
left a comment
Member
There was a problem hiding this comment.
None of this is strictly necessary..
When the server is installed on a machine there needs to be proper .env/configuration set no matter what. If we are going to customize default .env I think that might be a good idea but I would strongly recommend also disabling some of the tools which are not really needed and take up context.
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 & why
InitialForce model policy (Espen, 2026-07-17): gpt-5.6-sol is the default oracle, and gpt-5.4-pro and everything older are decommissioned (removed from the OpenAI model list so they can't be selected).
@oysteinkrog — you MOD this fork (you added the 5.5/5.6-sol/terra/luna line), so flagging for your review before it goes live fleet-wide.
Changes
config.py—DEFAULT_MODELfallback"auto"→"gpt-5.6-sol". SetDEFAULT_MODEL=auto(env/.env) to restore per-task auto-selection..env.example—DEFAULT_MODEL=auto→gpt-5.6-sol(new deployments default correctly). Note: an existing local.envwithDEFAULT_MODEL=autostill overrides — each machine updates its own.env(I've done mine).conf/openai_models.json— removed 16 models:gpt-5.4-pro,gpt-5.4,gpt-5.3-codex,gpt-5.2-pro,gpt-5.2,gpt-5.1-codex,gpt-5.1-codex-mini,gpt-5,gpt-5-mini,gpt-5-nano,gpt-5-codex,gpt-4.1,o3,o3-mini,o3-pro,o4-mini. Kept the current generation:gpt-5.5,gpt-5.5-pro,gpt-5.6-sol,gpt-5.6-terra,gpt-5.6-luna. Gemini / xAI / other providers untouched..claude/CLAUDE.md— startup-guidance model examples updated off the decommissioned names.Safety / verification
src/), so nothing in the server breaks.conf/openai_models.jsonis valid JSON;config.pyimports and resolves;gpt-5.6-solis present in the kept list.The one behavior change to weigh
The
config.pydefault flips from auto (Claude picks per task) to fixed gpt-5.6-sol. If you'd rather keep auto-mode as the default and only prune the model list, drop theconfig.py/.env.examplehunks. And adjust the decommission boundary if you want to keep, say, the codex line or o-series.🤖 Generated with Claude Code