Add gpt-5.4 and gpt-5.3-codex-spark to Codex model options#117
Merged
YushengAuggie merged 1 commit intomainfrom Mar 9, 2026
Merged
Add gpt-5.4 and gpt-5.3-codex-spark to Codex model options#117YushengAuggie merged 1 commit intomainfrom
YushengAuggie merged 1 commit intomainfrom
Conversation
Add openai/gpt-5.4 as the new default Codex model and add openai/gpt-5.3-codex-spark as an additional selectable option. Update e2e test to reflect the new default.
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
gpt-5.4andgpt-5.3-codex-sparkto theCODEX_MODELSallowlist insrc/cli/constants.tsso both models are surfaced in the poe-code Codex setup/configuration flow without requiring manual edits toconfig.toml.Closes #116
Changes
src/cli/constants.ts: Prependedopenai/gpt-5.4(as the new default/top option) and addedopenai/gpt-5.3-codex-sparkto theCODEX_MODELSarray.e2e/codex.test.ts: Updated the expected default model in the generated config fromgpt-5.3-codextogpt-5.4, reflecting the new preferred default.Acceptance Criteria Met
gpt-5.4andgpt-5.3-codex-sparknow appear as selectable options in the CLI configuration flow.npx poe-code@latest wrap codexornpx poe-code@latest configure codexwill usegpt-5.4by default without any manualconfig.tomledits.