feat: add gpt-5.5 and gpt-5.5-pro to static model registry#412
Open
feat: add gpt-5.5 and gpt-5.5-pro to static model registry#412
Conversation
Register the OpenAI GPT-5.5 family (released 2026-04-23) so HybridAI can resolve their context windows and vision capability without a discovery round-trip. Both models report a 1M token context window per OpenAI's release notes.
GPT-5.5 also rolled out to Codex on 2026-04-23. Register it as a forward-compat entry templated on gpt-5.4 / gpt-5.3-codex so existing Codex users pick it up automatically, and seed it into the default codex model list for fresh installs.
Forward-compat now appends openai-codex/gpt-5.5 whenever gpt-5.4 (or another template) is in the discovered set, so the existing exact-list and modelCount assertions need to reflect the extra entry.
furukama
requested changes
Apr 28, 2026
Contributor
furukama
left a comment
There was a problem hiding this comment.
Please fix merge conflicts
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
gpt-5.5andgpt-5.5-pro(OpenAI's GPT-5.5 family, released 2026-04-23) inSTATIC_VISION_CAPABLE_MODELSandSTATIC_MODEL_CONTEXT_WINDOWS.gpt-5.5-chat-latestat 128k to mirror the existinggpt-5.{N}-chat-latestentries.This lets HybridAI resolve the new model IDs (e.g.
hybridai/gpt-5.5) without a discovery round-trip and correctly flag them as multimodal. No default model change.Test plan
npx vitest run tests/hybridai-models.test.ts(8/8 passing, including new gpt-5.5 cases)npx biome checkclean on touched filestscerrors insrc/observability/otel.tsfrom missing optional@opentelemetry/*dev deps are unrelated to this change (reproduce onmain).