Skip to content

Commit ef9c496

Browse files
committed
fix: fix models to cache
1 parent 01965c9 commit ef9c496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_late_interaction_multimodal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
]
6969

7070
_MODELS_TO_CACHE = ("Qdrant/colmodernvbert",)
71-
MODELS_TO_CACHE = (model_name.lower() for model_name in _MODELS_TO_CACHE)
71+
MODELS_TO_CACHE = tuple(model_name.lower() for model_name in _MODELS_TO_CACHE)
7272

7373

7474
@pytest.fixture(scope="module")

0 commit comments

Comments
 (0)