Update model alias and multiplier inventories for 2026-05-25#34585
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update model alias inventory with missing entries
Update model alias and multiplier inventories for 2026-05-25
May 25, 2026
pelikhan
approved these changes
May 25, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Routine daily model inventory update adding new alias entries and multiplier registry keys discovered against live providers, with matching regression tests and a changeset.
Changes:
- Add
gpt-5.5,gpt-5.2, andgemini-3.5-flashaliases inpkg/workflow/data/model_aliases.jsonand extend alias tests. - Add new GPT-4o dated snapshots, legacy GPT-4 and GPT-3.5-turbo IDs to both Go and JS multiplier registries, with a new dated regression test.
- Add changeset metadata for the patch release.
Show a summary per file
| File | Description |
|---|---|
| pkg/workflow/data/model_aliases.json | Adds three new built-in aliases for newer GPT/Gemini families. |
| pkg/workflow/model_aliases_test.go | Extends expected/vendor family lists and adds exact-pattern assertions for the new aliases. |
| pkg/cli/data/model_multipliers.json | Adds GPT-4o dated snapshot and legacy GPT-4/GPT-3.5 multiplier entries. |
| actions/setup/js/model_multipliers.json | Mirrors the Go-side multiplier registry update for the JS action runtime. |
| pkg/cli/effective_tokens_test.go | Adds TestModelMultipliersInventoryUpdate20260525 covering the new multiplier keys. |
| .changeset/patch-model-inventory-2026-05-25.md | Adds patch changeset describing the inventory update. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 6/6 changed files
- Comments generated: 0
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.
Daily inventory surfaced three alias gaps (
gpt-5.5,gpt-5.2,gemini-3.5-flash) and several missing multiplier keys for snapshot/legacy model IDs. This PR aligns built-in alias and multiplier registries with currently discovered provider model identifiers while preserving historical entries.Alias map updates (
pkg/workflow/data/model_aliases.json)gpt-5.5→copilot/openai gpt-5.5*gpt-5.2→copilot/openai gpt-5.2*gemini-3.5-flash→copilot/google/gemini gemini-3.5*flash*Multiplier registry updates
gpt-4o-2024-05-13,gpt-4o-2024-08-06,gpt-4o-2024-11-20(0.33)gpt-4o-mini-2024-07-18(0.33)gpt-4-o-preview,gpt-4-0613(1.0)gpt-3.5-turbo,gpt-3.5-turbo-0613(0.0)pkg/cli/data/model_multipliers.jsonactions/setup/js/model_multipliers.jsonRegression coverage
pkg/workflow/model_aliases_test.go.TestModelMultipliersInventoryUpdate20260525inpkg/cli/effective_tokens_test.gofor newly introduced multiplier keys.Release metadata
.changeset/patch-model-inventory-2026-05-25.md.{ "gpt-5.5": ["copilot/gpt-5.5*", "openai/gpt-5.5*"], "gpt-5.2": ["copilot/gpt-5.2*", "openai/gpt-5.2*"], "gemini-3.5-flash": [ "copilot/gemini-3.5*flash*", "google/gemini-3.5*flash*", "gemini/gemini-3.5*flash*" ] }