Prep work for AI-SDK model sync#2132
Merged
bigfluffycookie merged 3 commits intomainfrom Mar 17, 2026
Merged
Conversation
bigfluffycookie
commented
Mar 14, 2026
| @@ -3,20 +3,20 @@ import { LanguageModel } from 'ai'; | |||
| import { AiProvider } from '../providers'; | |||
Contributor
Author
There was a problem hiding this comment.
sorts them in prep for the update script, else it looks like theres a million changes
|
Contributor
There was a problem hiding this comment.
Pull request overview
Prep work for upcoming AI-SDK model synchronization by normalizing provider model catalogs and adding quick-reference documentation links.
Changes:
- Reorders/sorts model arrays across multiple AI providers for consistency.
- Adds provider documentation links (generally model docs) at the top of several provider files.
- Consolidates Google Vertex’s separate Gemini/Claude model arrays into a single list.
Reviewed changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| packages/openops/src/lib/ai/providers/xai.ts | Adds xAI models doc link and sorts/normalizes Grok model list ordering. |
| packages/openops/src/lib/ai/providers/together-ai.ts | Adds TogetherAI docs link and reorders the Together model list. |
| packages/openops/src/lib/ai/providers/perplexity.ts | Adds Perplexity model docs link and sorts the Sonar model list. |
| packages/openops/src/lib/ai/providers/openai.ts | Adds OpenAI models docs link and reorders model list. |
| packages/openops/src/lib/ai/providers/mistral.ts | Adds Mistral models docs link and reorders Pixtral entries. |
| packages/openops/src/lib/ai/providers/groq.ts | Adds Groq models docs link and sorts model list (incl. DeepSeek distills). |
| packages/openops/src/lib/ai/providers/google.ts | Adds Gemini models docs link and sorts/reorders Gemini model list. |
| packages/openops/src/lib/ai/providers/google-vertex.ts | Adds Vertex models docs link; merges Gemini/Claude arrays into a single list used by the provider. |
| packages/openops/src/lib/ai/providers/deep-seek.ts | Adds DeepSeek docs link comment. |
| packages/openops/src/lib/ai/providers/cohere.ts | Adds Cohere models docs link and sorts command model list. |
| packages/openops/src/lib/ai/providers/cerebras.ts | Adds Cerebras docs link and reorders model list. |
| packages/openops/src/lib/ai/providers/anthropic.ts | Adds Anthropic models docs link and sorts model list. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
MarceloRGonc
approved these changes
Mar 17, 2026
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.



Part of OPS-3907