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 named vector using the `text2vec_aws` model.
458
459
@@ -468,6 +469,7 @@ def text2vec_aws(
468
469
source_properties: Which properties should be included when vectorizing. By default all text properties are included.
469
470
vector_index_config: The configuration for Weaviate's vector index. Use wvc.config.Configure.VectorIndex to create a vector index configuration. None by default
470
471
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
472
+
dimensions: The dimensionality of the vectors. Defaults to `None`, which uses the server-defined default.
"""Create a vector using the `text2vec-aws` module.
800
801
@@ -811,6 +812,7 @@ def text2vec_aws(
811
812
source_properties: Which properties should be included when vectorizing. By default all text properties are included.
812
813
vector_index_config: The configuration for Weaviate's vector index. Use `wvc.config.Configure.VectorIndex` to create a vector index configuration. None by default
813
814
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
815
+
dimensions: The dimensionality of the vectors. Defaults to `None`, which uses the server-defined default.
"""Create a vector using the `text2vec-aws` module.
842
846
@@ -851,6 +855,7 @@ def text2vec_aws_bedrock(
851
855
source_properties: Which properties should be included when vectorizing. By default all text properties are included.
852
856
vector_index_config: The configuration for Weaviate's vector index. Use `wvc.config.Configure.VectorIndex` to create a vector index configuration. None by default
853
857
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
858
+
dimensions: The dimensionality of the vectors. Defaults to `None`, which uses the server-defined default.
"""Create a vector using the `text2vec-aws` module.
884
891
@@ -895,6 +902,7 @@ def text2vec_aws_sagemaker(
895
902
source_properties: Which properties should be included when vectorizing. By default all text properties are included.
896
903
vector_index_config: The configuration for Weaviate's vector index. Use `wvc.config.Configure.VectorIndex` to create a vector index configuration. None by default
897
904
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
905
+
dimensions: The dimensionality of the vectors. Defaults to `None`, which uses the server-defined default.
0 commit comments