fix(azure-cognitive-services): remove broken symlinks for retired xAI models#2089
Open
RISHIKREDDYL wants to merge 1 commit into
Open
fix(azure-cognitive-services): remove broken symlinks for retired xAI models#2089RISHIKREDDYL wants to merge 1 commit into
RISHIKREDDYL wants to merge 1 commit into
Conversation
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.
Summary
Removes 5 dangling symlinks in
providers/azure-cognitive-services/models/that were left behind after their target files inproviders/azure/models/were deleted.Background
PR #1788 ("xai: drop models retired May 15, 2026") deleted the corresponding model files from
providers/azure/models/because the xAI base models they referenced via[extends]had been retired. However, the symlinks inproviders/azure-cognitive-services/models/pointing to those deleted files were overlooked and not cleaned up.Removed
grok-3.toml→../../azure/models/grok-3.toml(broken)grok-3-mini.toml→../../azure/models/grok-3-mini.toml(broken)grok-4.toml→../../azure/models/grok-4.toml(broken)grok-4-fast-non-reasoning.toml→../../azure/models/grok-4-fast-non-reasoning.toml(broken)grok-code-fast-1.toml→../../azure/models/grok-code-fast-1.toml(broken)Note:
grok-4-fast-reasoningwas also added in the original PR but was not deleted in the retirement PR, so its symlink remains valid and is kept.Verification
bun install && bun validatepasses locally.