feat(models): 2026-07-03 model inventory update — new models, alias additions, mirror sync#43063
Conversation
…flash-picker and kimi-k2.7-code - Add mai-code-1-flash-picker and kimi-k2.7-code to pkg/cli/data/models.json - Sync actions/setup/js/models.json: add claude-fable-5, claude-sonnet-5, mai-code-1-flash-picker, kimi-k2.7-code - Add kimi alias to model_aliases.json - Update coding alias to include kimi fallback - Add veo alias for Google Veo video generation models - Update model-tables.md docs to reflect new aliases - Update wasm golden test fixtures Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Triage Result
Rationale: WIP with zero files changed. Model inventory update (mai-code-1-flash-picker, kimi-k2.7-code, alias sync). Defer until implementation is complete and checklist items resolved.
|
|
Nice work on the daily model inventory sync! 🤖 The PR covers the full surface area neatly — new models added to both the Go pricing catalog and the JS mirror, alias gaps filled for
|
There was a problem hiding this comment.
Pull request overview
This PR performs the daily model inventory synchronization for gh-aw, updating the built-in model/pricing catalogs, JS setup mirror, and model alias map, with corresponding golden fixture updates to keep compiled outputs consistent.
Changes:
- Added two new GitHub Copilot models (
mai-code-1-flash-picker,kimi-k2.7-code) to the CLI model catalog and the JS mirror. - Extended built-in model aliases with new
kimiandveoaliases, and appendedkimias the final fallback for thecodingalias chain. - Updated docs and wasm golden fixtures to reflect the updated alias map in generated AWF config output.
Show a summary per file
| File | Description |
|---|---|
| pkg/cli/data/models.json | Adds the two new Copilot models with pricing and wire_api metadata. |
| actions/setup/js/models.json | Mirrors the updated model inventory for the setup action, including the two new Copilot models and the missing Claude entries. |
| pkg/workflow/data/model_aliases.json | Adds kimi + veo aliases and updates coding to fall back to kimi. |
| docs/src/content/docs/reference/model-tables.md | Updates the generated alias tables to document kimi, veo, and the updated coding chain. |
| pkg/workflow/testdata/TestWasmGolden_CompileFixtures/with-imports.golden | Updates expected compiled AWF config JSON to include new/updated model aliases. |
| pkg/workflow/testdata/TestWasmGolden_CompileFixtures/smoke-copilot.golden | Updates expected compiled AWF config JSON to include new/updated model aliases. |
| pkg/workflow/testdata/TestWasmGolden_CompileFixtures/playwright-cli-mode.golden | Updates expected compiled AWF config JSON to include new/updated model aliases. |
| pkg/workflow/testdata/TestWasmGolden_CompileFixtures/basic-copilot.golden | Updates expected compiled AWF config JSON to include new/updated model aliases. |
| pkg/workflow/testdata/TestWasmGolden_AllEngines/pi.golden | Updates expected compiled AWF config JSON to include new/updated model aliases. |
| pkg/workflow/testdata/TestWasmGolden_AllEngines/gemini.golden | Updates expected compiled AWF config JSON to include new/updated model aliases. |
| pkg/workflow/testdata/TestWasmGolden_AllEngines/copilot.golden | Updates expected compiled AWF config JSON to include new/updated model aliases. |
| pkg/workflow/testdata/TestWasmGolden_AllEngines/codex.golden | Updates expected compiled AWF config JSON to include new/updated model aliases. |
| pkg/workflow/testdata/TestWasmGolden_AllEngines/claude.golden | Updates expected compiled AWF config JSON to include new/updated model aliases. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 13/13 changed files
- Comments generated: 0
- Review effort level: Low
|
🎉 This pull request is included in a new release. Release: |
Daily model inventory sync: two new Copilot models missing from pricing catalog, two models missing from the JS mirror, and three alias gaps (
kimi,codingfallback,veo).New models (
pkg/cli/data/models.json+actions/setup/js/models.json)mai-code-1-flash-pickerkimi-k2.7-codeBoth use
provider_type: openai,wire_api: completions.actions/setup/js/models.jsonmirror syncAdded the two models present in
pkg/cli/data/models.jsonbut absent from the JS mirror:claude-fable-5—anthropic+github-copilotsectionsclaude-sonnet-5—anthropic+github-copilotsectionsAlias updates (
pkg/workflow/data/model_aliases.json)kimi(new) →["copilot/kimi*", "openai/kimi*"]coding(updated) → appendskimias final fallback aftergpt-5-codexveo(new) →["google/veo*", "gemini/veo*"]— covers the three liveveo-3.1-*Gemini endpointsUpdated
docs/src/content/docs/reference/model-tables.mdand wasm golden fixtures accordingly.