forked from zilliztech/deep-searcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
33 lines (32 loc) · 1.1 KB
/
__init__.py
File metadata and controls
33 lines (32 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from .bedrock_embedding import BedrockEmbedding
from .fastembed_embdding import FastEmbedEmbedding
from .gemini_embedding import GeminiEmbedding
from .glm_embedding import GLMEmbedding
from .jiekouai_embedding import JiekouAIEmbedding
from .milvus_embedding import MilvusEmbedding
from .novita_embedding import NovitaEmbedding
from .ollama_embedding import OllamaEmbedding
from .openai_embedding import OpenAIEmbedding
from .ppio_embedding import PPIOEmbedding
from .sentence_transformer_embedding import SentenceTransformerEmbedding
from .siliconflow_embedding import SiliconflowEmbedding
from .volcengine_embedding import VolcengineEmbedding
from .voyage_embedding import VoyageEmbedding
from .watsonx_embedding import WatsonXEmbedding
__all__ = [
"MilvusEmbedding",
"OpenAIEmbedding",
"VoyageEmbedding",
"BedrockEmbedding",
"SiliconflowEmbedding",
"GeminiEmbedding",
"PPIOEmbedding",
"VolcengineEmbedding",
"GLMEmbedding",
"OllamaEmbedding",
"FastEmbedEmbedding",
"NovitaEmbedding",
"SentenceTransformerEmbedding",
"WatsonXEmbedding",
"JiekouAIEmbedding",
]