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
"""Create a `_Multi2VecCohereConfig` object for use when vectorizing using the `multi2vec-cohere` model.
915
+
"""Create a `_Multi2VecVoyageaiConfig` object for use when vectorizing using the `multi2vec-voyageai` model.
912
916
913
-
See the [documentation](https://weaviate.io/developers/weaviate/model-providers/cohere/embeddings-multimodal)
917
+
See the [documentation](https://weaviate.io/developers/weaviate/model-providers/voyageai/embeddings-multimodal)
914
918
for detailed usage.
915
919
916
920
Args:
917
921
model: The model to use. Defaults to `None`, which uses the server-defined default.
918
-
truncate: The truncation strategy to use. Defaults to `None`, which uses the server-defined default.
922
+
truncation: The truncation strategy to use. Defaults to `None`, which uses the server-defined default.
923
+
dimensions: The number of dimensions for the output embeddings. Defaults to `None`, which uses the model's default (1024 for voyage-multimodal-3.5).
919
924
output_encoding: Deprecated, has no effect.
920
925
vectorize_collection_name: Deprecated, has no effect.
921
926
base_url: The base URL to use where API requests should go. Defaults to `None`, which uses the server-defined default.
922
927
image_fields: The image fields to use in vectorization.
923
928
text_fields: The text fields to use in vectorization.
929
+
video_fields: The video fields to use in vectorization.
924
930
925
931
Raises:
926
-
pydantic.ValidationError: If `model` is not a valid value from the `CohereMultimodalModel` type or if `truncate` is not a valid value from the `CohereTruncation` type.
932
+
pydantic.ValidationError: If `model` is not a valid value from the `VoyageMultimodalModel` type.
base_url: The base URL to use where API requests should go. Defaults to `None`, which uses the server-defined default.
1129
1131
image_fields: The image fields to use in vectorization.
1130
1132
model: The model to use. Defaults to `None`, which uses the server-defined default.
1131
-
output_encoding: The output encoding to use. Defaults to `None`, which uses the server-defined default.
1132
1133
text_fields: The text fields to use in vectorization.
1134
+
video_fields: The video fields to use in vectorization.
1135
+
dimensions: The number of dimensions for the output embeddings. Defaults to `None`, which uses the model's default.
1133
1136
truncation: The truncation strategy to use. Defaults to `None`, which uses the server-defined default.
1134
1137
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