File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ class EmbedderCohereConfig(EmbedderSettings):
107
107
)
108
108
109
109
110
- class EmbedderFastEmbedConfig (EmbedderSettings ):
110
+ class EmbedderQdrantFastEmbedConfig (EmbedderSettings ):
111
111
model_name : str = "BAAI/bge-base-en"
112
112
max_length : int = 512 # Unknown behavior for values > 512.
113
113
doc_embed_type : str = "passage" # as suggest on fastembed documentation, "passage" is the best option for documents.
@@ -116,10 +116,11 @@ class EmbedderFastEmbedConfig(EmbedderSettings):
116
116
117
117
model_config = ConfigDict (
118
118
json_schema_extra = {
119
- "humanReadableName" : "Fast Embedder " ,
120
- "description" : "Configuration for Fast embeddings " ,
119
+ "humanReadableName" : "Qdrant FastEmbed (Local) " ,
120
+ "description" : "Configuration for Qdrant FastEmbed " ,
121
121
}
122
122
)
123
+
123
124
124
125
125
126
SUPPORTED_EMDEDDING_MODELS = [
@@ -129,7 +130,7 @@ class EmbedderFastEmbedConfig(EmbedderSettings):
129
130
EmbedderOpenAIConfig ,
130
131
EmbedderAzureOpenAIConfig ,
131
132
EmbedderCohereConfig ,
132
- EmbedderFastEmbedConfig
133
+ EmbedderQdrantFastEmbedConfig
133
134
]
134
135
135
136
You can’t perform that action at this time.
0 commit comments