Add new Copilot model aliases and catalog entries#35
Conversation
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughThis pull request adds three new COPILOT model options to the model registry: gpt-5.4-mini, gemini-3.1-pro, and raptor-mini. Each model is accompanied by a slug alias in MODEL_SLUG_ALIASES_BY_PROVIDER to enable shorthand references (5.4-mini, gemini-3.1, and raptor respectively). Test coverage is added for slug normalization and resolution to verify the new aliases map correctly to their canonical slugs and that all model options are properly resolvable by provider. 📝 Coding Plan
Comment Tip CodeRabbit can use oxc to improve the quality of JavaScript and TypeScript code reviews.Add a configuration file to your project to customize how CodeRabbit runs oxc. |
This pull request adds support for new copilot model options and their aliases, ensuring they are properly normalized and resolved. The main updates are to the
MODEL_OPTIONS_BY_PROVIDERandMODEL_SLUG_ALIASES_BY_PROVIDERmappings, as well as corresponding tests for normalization and resolution.New model options and aliases:
gpt-5.4-mini,gemini-3.1-pro, andraptor-minito thecopilotprovider inMODEL_OPTIONS_BY_PROVIDER, expanding available model choices. [1] [2] [3]5.4-mini,gemini-3.1,raptor) for these models inMODEL_SLUG_ALIASES_BY_PROVIDERto improve user input flexibility. [1] [2]Testing enhancements:
Summary by CodeRabbit