Commit 5f8cdba 1 parent cf9e17d commit 5f8cdba Copy full SHA for 5f8cdba
File tree 2 files changed +9
-14
lines changed
2 files changed +9
-14
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ jobs:
14
14
strategy :
15
15
matrix :
16
16
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'
21
21
- ' 3.13.x'
22
22
os :
23
23
- ubuntu-latest
Original file line number Diff line number Diff line change 1
1
import hashlib
2
2
3
3
from fastembed import (
4
- TextEmbedding ,
5
- LateInteractionTextEmbedding ,
6
4
SparseTextEmbedding ,
7
- ImageEmbedding ,
8
- LateInteractionMultimodalEmbedding ,
9
5
)
10
- from fastembed .rerank .cross_encoder import TextCrossEncoder
11
6
12
7
13
8
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(),
19
14
* SparseTextEmbedding .list_supported_models (),
20
15
]
21
16
You can’t perform that action at this time.
0 commit comments