Skip to content

Commit 5f8cdba

Browse files
Trigger CI test
1 parent cf9e17d commit 5f8cdba

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

.github/workflows/python-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
strategy:
1515
matrix:
1616
python-version:
17-
- '3.9.x'
18-
- '3.10.x'
19-
- '3.11.x'
20-
- '3.12.x'
17+
# - '3.9.x'
18+
# - '3.10.x'
19+
# - '3.11.x'
20+
# - '3.12.x'
2121
- '3.13.x'
2222
os:
2323
- ubuntu-latest

tests/get_all_model_hash.py

+5-10
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
import hashlib
22

33
from fastembed import (
4-
TextEmbedding,
5-
LateInteractionTextEmbedding,
64
SparseTextEmbedding,
7-
ImageEmbedding,
8-
LateInteractionMultimodalEmbedding,
95
)
10-
from fastembed.rerank.cross_encoder import TextCrossEncoder
116

127

138
models = [
14-
*TextEmbedding.list_supported_models(),
15-
*ImageEmbedding.list_supported_models(),
16-
*LateInteractionTextEmbedding.list_supported_models(),
17-
*LateInteractionMultimodalEmbedding.list_supported_models(),
18-
*TextCrossEncoder.list_supported_models(),
9+
# *TextEmbedding.list_supported_models(),
10+
# *ImageEmbedding.list_supported_models(),
11+
# *LateInteractionTextEmbedding.list_supported_models(),
12+
# *LateInteractionMultimodalEmbedding.list_supported_models(),
13+
# *TextCrossEncoder.list_supported_models(),
1914
*SparseTextEmbedding.list_supported_models(),
2015
]
2116

0 commit comments

Comments
 (0)