fix(ci): add HF_TOKEN and model caching, remove uv.lock#275
Merged
Conversation
- Add HF_TOKEN environment variable to CI workflow for authenticated HuggingFace downloads - Add HuggingFace model caching to avoid repeated downloads and HTTP 429 errors - Set TRANSFORMERS_CACHE and HF_HOME environment variables for consistent model paths - Remove uv.lock that was accidentally committed in rollback commit - Add uv.lock to .gitignore to prevent future commits This fixes the CI failure caused by HuggingFace rate limiting when multiple tests load the sentence-transformers model. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
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
Problem
CI was failing with HTTP 429 rate limiting errors from HuggingFace when loading the
sentence-transformers/all-MiniLM-L6-v2model during tests. The model was being downloaded repeatedly without authentication or caching.Solution
HF_TOKENfrom GitHub secrets for authenticated requests (higher rate limits)TRANSFORMERS_CACHE,HF_HOME)uv.lockfileuv.lockto.gitignoreTest plan
Generated with Claude Code