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 vector using the `text2vec-google` model.
1482
1483
@@ -1495,6 +1496,7 @@ def text2vec_google(
1495
1496
source_properties: Which properties should be included when vectorizing. By default all text properties are included.
1496
1497
vector_index_config: The configuration for Weaviate's vector index. Use `wvc.config.Configure.VectorIndex` to create a vector index configuration. None by default.
1497
1498
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
1499
+
location: The Google Vertex AI region to run the model in. Defaults to `None`, which uses the server-defined default.
1498
1500
1499
1501
Raises:
1500
1502
pydantic.ValidationError: If `api_endpoint` is not a valid URL.
"""Create a vector using the `text2vec-google` model.
1630
1636
@@ -1643,6 +1649,7 @@ def text2vec_google_vertex(
1643
1649
source_properties: Which properties should be included when vectorizing. By default all text properties are included.
1644
1650
vector_index_config: The configuration for Weaviate's vector index. Use `wvc.config.Configure.VectorIndex` to create a vector index configuration. None by default.
1645
1651
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
1652
+
location: The Google Vertex AI region to run the model in. Defaults to `None`, which uses the server-defined default.
1646
1653
1647
1654
Raises:
1648
1655
pydantic.ValidationError: If `api_endpoint` is not a valid URL.
0 commit comments