From 2c5849b5d2b4aa3793fb4243b8dacc46a0bbd145 Mon Sep 17 00:00:00 2001 From: Yiorgis Gozadinos Date: Thu, 23 Jul 2026 12:16:15 +0300 Subject: [PATCH] Invalidate CI HuggingFace model cache for transformers 5 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5422bb65..f2303707 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -66,7 +66,7 @@ jobs: uses: actions/cache@v4 with: path: ~/.cache/huggingface - key: huggingface-${{ runner.os }}-test-models-v1 + key: huggingface-${{ runner.os }}-test-models-v2 - name: Pre-download tokenizer if: steps.hf-cache.outputs.cache-hit != 'true' run: uv run python -c "from transformers import AutoTokenizer; AutoTokenizer.from_pretrained('Qwen/Qwen3-Embedding-0.6B')"