fix: replace non-existent gpt-5.3-codex with gpt-5.2-codex in fallback chains#1935
Conversation
…k chains gpt-5.3-codex does not exist on GitHub Copilot provider, causing hephaestus agent, ultrabrain/deep/unspecified-low categories to fail model resolution. gpt-5.2-codex is the latest available codex model.
|
Thank you for your contribution! Before we can merge this PR, we need you to sign our Contributor License Agreement (CLA). To sign the CLA, please comment on this PR with: This is a one-time requirement. Once signed, all your future contributions will be automatically accepted. I have read the CLA Document and I hereby sign the CLA Volodymyr Ajentik seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. |
There was a problem hiding this comment.
No issues found across 2 files
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Requires human review: The PR changes model versions from gpt-5.3-codex to gpt-5.2-codex, which could introduce regressions not guaranteed safe.
Summary
gpt-5.3-codexdoes not exist on the GitHub Copilot provider (onlygpt-5.2-codexis available), causing model resolution failures for users who rely on GitHub Copilot as their provider.Problem
The following agents/categories reference
gpt-5.3-codexwhich isn't available:requiresModel: "gpt-5.3-codex"prevents the entire category from activatingFix
Replace all 5 occurrences of
gpt-5.3-codexwithgpt-5.2-codex(the latest available codex model on GitHub Copilot) inmodel-requirements.tsand update corresponding test assertions.Changes
src/shared/model-requirements.ts— 5 replacements (hephaestus fallback, ultrabrain fallback, deep fallback + requiresModel, unspecified-low fallback)src/shared/model-requirements.test.ts— Updated test descriptions and assertions to matchVerification
model-requirements.test.tspassbun run buildsucceedsSummary by cubic
Replaced references to gpt-5.3-codex with gpt-5.2-codex to restore model resolution on the GitHub Copilot provider. This fixes activation for affected agents and categories.
Written for commit 22031af. Summary will update on new commits.