You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: weaviate/collections/classes/config_vectorizers.py
+5-9Lines changed: 5 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -507,7 +507,6 @@ class _Multi2VecVoyageaiConfig(_Multi2VecBase):
507
507
baseURL: Optional[AnyHttpUrl]
508
508
model: Optional[str]
509
509
truncation: Optional[bool]
510
-
output_encoding: Optional[str]
511
510
512
511
def_to_dict(self) ->Dict[str, Any]:
513
512
ret_dict=super()._to_dict()
@@ -523,7 +522,6 @@ class _Multi2VecNvidiaConfig(_Multi2VecBase):
523
522
baseURL: Optional[AnyHttpUrl]
524
523
model: Optional[str]
525
524
truncation: Optional[bool]
526
-
output_encoding: Optional[str]
527
525
528
526
def_to_dict(self) ->Dict[str, Any]:
529
527
ret_dict=super()._to_dict()
@@ -852,8 +850,8 @@ def multi2vec_voyageai(
852
850
Args:
853
851
model: The model to use. Defaults to `None`, which uses the server-defined default.
854
852
truncate: The truncation strategy to use. Defaults to `None`, which uses the server-defined default.
855
-
output_encoding: Format in which the embeddings are encoded. Defaults to `None`, so the embeddings are represented as a list of floating-point numbers.
856
-
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
853
+
output_encoding: Deprecated, has no effect.
854
+
vectorize_collection_name: Deprecated, has no effect.
857
855
base_url: The base URL to use where API requests should go. Defaults to `None`, which uses the server-defined default.
858
856
image_fields: The image fields to use in vectorization.
859
857
text_fields: The text fields to use in vectorization.
model: The model to use. Defaults to `None`, which uses the server-defined default.
891
888
truncate: The truncation strategy to use. Defaults to `None`, which uses the server-defined default.
892
-
output_encoding: Format in which the embeddings are encoded. Defaults to `None`, so the embeddings are represented as a list of floating-point numbers.
893
-
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
889
+
output_encoding: Deprecated, has no effect.
890
+
vectorize_collection_name: Deprecated, has no effect.
894
891
base_url: The base URL to use where API requests should go. Defaults to `None`, which uses the server-defined default.
895
892
image_fields: The image fields to use in vectorization.
896
893
text_fields: The text fields to use in vectorization.
base_url: The base URL to use where API requests should go. Defaults to `None`, which uses the server-defined default.
875
872
image_fields: The image fields to use in vectorization.
876
873
model: The model to use. Defaults to `None`, which uses the server-defined default.
877
-
output_encoding: The output encoding to use. Defaults to `None`, which uses the server-defined default.
878
874
text_fields: The text fields to use in vectorization.
879
875
truncation: The truncation strategy to use. Defaults to `None`, which uses the server-defined default.
880
876
vector_index_config: The configuration for Weaviate's vector index. Use `wvc.config.Configure.VectorIndex` to create a vector index configuration. None by default
0 commit comments