File tree 1 file changed +1
-4
lines changed
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,6 @@ class HuggingFaceEmbedder(CamelBase):
65
65
The embedder source, must be "huggingFace"
66
66
url: Optional[str]
67
67
The URL Meilisearch contacts when querying the embedder
68
- api_key: Optional[str]
69
- Authentication token Meilisearch should send with each request to the embedder
70
68
model: Optional[str]
71
69
The model your embedder uses when generating vectors (defaults to BAAI/bge-base-en-v1.5)
72
70
dimensions: Optional[int]
@@ -85,7 +83,6 @@ class HuggingFaceEmbedder(CamelBase):
85
83
86
84
source : str = "huggingFace"
87
85
url : Optional [str ] = None
88
- api_key : Optional [str ] = None
89
86
model : Optional [str ] = None # Defaults to BAAI/bge-base-en-v1.5
90
87
dimensions : Optional [int ] = None
91
88
revision : Optional [str ] = None
@@ -143,7 +140,7 @@ class RestEmbedder(CamelBase):
143
140
api_key: Optional[str]
144
141
Authentication token Meilisearch should send with each request to the embedder
145
142
dimensions: Optional[int]
146
- Number of dimensions in the chosen model
143
+ Number of dimensions in the embeddings
147
144
document_template: Optional[str]
148
145
Template defining the data Meilisearch sends to the embedder
149
146
document_template_max_bytes: Optional[int]
You can’t perform that action at this time.
0 commit comments