Restore HEAD validation before model downloads to detect 401 errors early#50
Merged
suzukimain merged 9 commits intoupdate-v9from Dec 16, 2025
Merged
Restore HEAD validation before model downloads to detect 401 errors early#50suzukimain merged 9 commits intoupdate-v9from
suzukimain merged 9 commits intoupdate-v9from
Conversation
Contributor
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: suzukimain <131413573+suzukimain@users.noreply.github.com>
Co-authored-by: suzukimain <131413573+suzukimain@users.noreply.github.com>
Co-authored-by: suzukimain <131413573+suzukimain@users.noreply.github.com>
Co-authored-by: suzukimain <131413573+suzukimain@users.noreply.github.com>
Co-authored-by: suzukimain <131413573+suzukimain@users.noreply.github.com>
Co-authored-by: suzukimain <131413573+suzukimain@users.noreply.github.com>
Co-authored-by: suzukimain <131413573+suzukimain@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update model loading enhancements and .gitignore updates
Restore HEAD validation before model downloads to detect 401 errors early
Dec 16, 2025
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.
The previous implementation removed HEAD request validation before downloading models from Hugging Face, resulting in expensive failed downloads instead of lightweight pre-flight checks, particularly for 401 Unauthorized errors.
Changes
validate_url_with_head()function - Performs HEAD requests before downloads, raises HTTPError for 4xx/5xx responses to enable candidate retryfile_downloader()- Uses shared validation function to eliminate duplicationDiffusionPipeline.download()- checksmodel_index.jsonaccessibilityhf_hub_download()- checks file URL accessibilityhf_hub_url()- Ensures consistent URL construction and respectsrevisionparameterImplementation
Non-HTTPError request failures (timeouts, network errors) are logged but don't block downloads, as the full download may still succeed.
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.