feat(models): model alias inventory update 2026-07-21#46974
Merged
Conversation
…t-6x, add raptor-mini alias Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update model inventory aliases for 2026-07-21
feat(models): model alias inventory update 2026-07-21
Jul 21, 2026
pelikhan
marked this pull request as ready for review
July 21, 2026 05:20
Contributor
There was a problem hiding this comment.
Pull request overview
Updates built-in model routing for Claude Sonnet 5 and Raptor mini, with synchronized tests, documentation, and generated workflow fixtures.
Changes:
- Adds Sonnet 5 patterns to
sonnet-6x. - Introduces the
raptor-minialias. - Refreshes tests, documentation, golden files, and compiled workflows.
Show a summary per file
| File | Description |
|---|---|
pkg/workflow/data/model_aliases.json |
Updates the alias inventory. |
pkg/workflow/model_aliases_test.go |
Updates alias assertions. |
docs/src/content/docs/reference/model-tables.md |
Documents the aliases. |
.changeset/patch-model-inventory-2026-07-21.md |
Records the patch release. |
pkg/workflow/testdata/TestWasmGolden_CompileFixtures/with-imports.golden |
Refreshes generated config. |
pkg/workflow/testdata/TestWasmGolden_CompileFixtures/playwright-cli-mode.golden |
Refreshes generated config. |
pkg/workflow/testdata/TestWasmGolden_CompileFixtures/basic-copilot.golden |
Refreshes generated config. |
pkg/workflow/testdata/TestWasmGolden_AllEngines/pi.golden |
Refreshes Pi output. |
pkg/workflow/testdata/TestWasmGolden_AllEngines/gemini.golden |
Refreshes Gemini output. |
pkg/workflow/testdata/TestWasmGolden_AllEngines/copilot.golden |
Refreshes Copilot output. |
pkg/workflow/testdata/TestWasmGolden_AllEngines/codex.golden |
Refreshes Codex output. |
pkg/workflow/testdata/TestWasmGolden_AllEngines/claude.golden |
Refreshes Claude output. |
.github/workflows/detection-analysis-report.lock.yml |
Regenerates embedded aliases. |
.github/workflows/daily-observability-report.lock.yml |
Regenerates embedded aliases. |
.github/workflows/daily-multi-device-docs-tester.lock.yml |
Regenerates embedded aliases. |
.github/workflows/daily-max-ai-credits-test.lock.yml |
Regenerates embedded aliases. |
.github/workflows/daily-credit-limit-test.lock.yml |
Regenerates embedded aliases. |
.github/workflows/daily-compiler-quality.lock.yml |
Regenerates embedded aliases. |
.github/workflows/daily-cli-tools-tester.lock.yml |
Regenerates embedded aliases. |
.github/workflows/daily-cache-strategy-analyzer.lock.yml |
Regenerates embedded aliases. |
.github/workflows/ci-coach.lock.yml |
Regenerates embedded aliases. |
.github/workflows/audit-workflows.lock.yml |
Regenerates embedded aliases. |
.github/workflows/agentic-token-optimizer.lock.yml |
Regenerates embedded aliases. |
.github/workflows/agent-performance-analyzer.lock.yml |
Regenerates embedded aliases. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 77/273 changed files
- Comments generated: 2
- Review effort level: Medium
| @@ -22,6 +22,7 @@ | |||
| "mai-code-1-flash-picker": ["copilot/MAI-Code-1-Flash-picker*", "copilot/mai-code-1-flash-picker*", "openai/MAI-Code-1-Flash-picker*"], | |||
| "kimi": ["copilot/kimi*", "openai/kimi*"], | |||
| "kiwi": ["copilot/kiwi*", "openai/kiwi*"], | |||
| "raptor-mini": ["copilot/raptor*", "openai/raptor*"], | |||
| @@ -20,7 +20,7 @@ Vendor aliases map a short name to one or more provider-scoped glob patterns. Th | |||
| | Alias | Fallback patterns (tried in order) | | |||
| |-------|-------------------------------------| | |||
| | `sonnet` | `copilot/*sonnet*`, `anthropic/*sonnet*` | | |||
| | `sonnet-6x` | `copilot/*sonnet-4.5*`, `copilot/*sonnet-4.6*`, `copilot/*sonnet-4-5-*`, `anthropic/*sonnet-4-5-*`, `copilot/*sonnet-4-6*`, `anthropic/*sonnet-4-6*` | | |||
| | `sonnet-6x` | `copilot/*sonnet-4.5*`, `copilot/*sonnet-4.6*`, `copilot/*sonnet-5*`, `copilot/*sonnet-4-5-*`, `anthropic/*sonnet-4-5-*`, `copilot/*sonnet-4-6*`, `anthropic/*sonnet-4-6*`, `anthropic/*sonnet-5*` | | |||
This was referenced Jul 21, 2026
Contributor
|
🎉 This pull request is included in a new release. Release: |
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.
claude-sonnet-5(released 2026-06-29) is missing fromsonnet-6x, so theagentalias cannot route to it.raptor-minihas no alias coverage despite being live in the pricing table.Changes
sonnet-6xalias — addscopilot/*sonnet-5*andanthropic/*sonnet-5*patterns, enablingagent→sonnet-6x→claude-sonnet-5routing:raptor-minialias (new) — covers Raptor mini model family:Updated unit test assertions, WASM golden files, and
model-tables.mdreference docs to match.