feat(chatgpt_codex): add gpt-5.5 to known models - #9292
Merged
Conversation
Adds gpt-5.5 to the CHATGPT_CODEX_KNOWN_MODELS list so it appears in the model picker for the ChatGPT Codex (OAuth) provider, instead of users having to type it manually. Verified end-to-end against the real ChatGPT Codex backend (POST https://chatgpt.com/backend-api/codex/responses) using the same OAuth + payload shape goose builds. Both plain text generation and tool calling work; the backend returns the same SSE event schema goose already parses, so no other code paths needed changes. Signed-off-by: Michael Neale <michael.neale@gmail.com>
michaelneale
enabled auto-merge
May 18, 2026 01:02
angiejones
approved these changes
May 18, 2026
Make gpt-5.5 the default model for the ChatGPT Codex provider now that it's the strongest model available via the ChatGPT subscription backend. Verified live against /backend-api/codex/responses for both plain generation and tool calling. Signed-off-by: Michael Neale <michael.neale@gmail.com>
shafqatevo
pushed a commit
to shafqatevo/goose
that referenced
this pull request
Aug 7, 2026
Signed-off-by: Michael Neale <michael.neale@gmail.com>
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
Adds
gpt-5.5to theCHATGPT_CODEX_KNOWN_MODELSlist in the ChatGPT Codex (OAuth) provider so it shows up in the model picker, instead of users having to type it in by hand.Placed first so it's the most prominent option in the picker.
Why
The ChatGPT Codex provider's available-models list is hand-curated (the OAuth backend at
chatgpt.com/backend-api/codexdoesn't expose a usable/modelsendpoint for this flow), so each new model needs an explicit entry. Users have been settinggpt-5.5manually and reporting it works — this just surfaces it properly in the UI/CLI.Verification
Tested live against the real ChatGPT Codex backend (
POST https://chatgpt.com/backend-api/codex/responses) using the exact OAuth + payload shapecreate_codex_requestbuilds:completed.modelgpt-5.3-codexgpt-5.4(server alias)gpt-5.5gpt-5.5gpt-5.4gpt-5.4gpt-5.5returns the same SSE event schema goose's stream parser already consumes (response.output_text.delta,response.function_call_arguments.done, etc.), so no other code paths needed changes. Reasoning effortlow/medium/high/xhighall accepted.What was not changed
CHATGPT_CODEX_DEFAULT_MODELis stillgpt-5.3-codex(it gets a special coding-agent preamble injected). Happy to flip it togpt-5.5in a follow-up if desired.gpt-5.5— it gets the plain system prompt, same asgpt-5.4.Tests
cargo test -p goose --lib providers::chatgpt_codex— all 15 tests passcargo fmt✅cargo build -p goose✅