Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions weaviate/collections/classes/config_vectorizers.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ def multi2vec_clip(
image_fields: The image fields to use in vectorization.
text_fields: The text fields to use in vectorization.
inference_url: The inference url to use where API requests should go. Defaults to `None`, which uses the server-defined default.
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
vectorize_collection_name: Deprecated, has no effect.

Raises:
pydantic.ValidationError: If `image_fields` or `text_fields` are not `None` or a `list`.
Expand Down Expand Up @@ -745,7 +745,7 @@ def multi2vec_bind(
text_fields: The text fields to use in vectorization.
thermal_fields: The thermal fields to use in vectorization.
video_fields: The video fields to use in vectorization.
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
vectorize_collection_name: Deprecated, has no effect.

Raises:
pydantic.ValidationError: If any of the `*_fields` are not `None` or a `list`.
Expand Down Expand Up @@ -926,7 +926,7 @@ def multi2vec_cohere(
Args:
model: The model to use. Defaults to `None`, which uses the server-defined default.
truncate: The truncation strategy to use. Defaults to `None`, which uses the server-defined default.
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
vectorize_collection_name: Deprecated, has no effect.
base_url: The base URL to use where API requests should go. Defaults to `None`, which uses the server-defined default.
image_fields: The image fields to use in vectorization.
text_fields: The text fields to use in vectorization.
Expand Down Expand Up @@ -1331,7 +1331,7 @@ def multi2vec_palm(
dimensions: The number of dimensions to use. Defaults to `None`, which uses the server-defined default.
model_id: The model ID to use. Defaults to `None`, which uses the server-defined default.
video_interval_seconds: Length of a video interval. Defaults to `None`, which uses the server-defined default.
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
vectorize_collection_name: Deprecated, has no effect.

Raises:
pydantic.ValidationError: If `api_endpoint` is not a valid URL.
Expand Down Expand Up @@ -1374,7 +1374,7 @@ def multi2vec_google(
video_fields: The video fields to use in vectorization.
model_id: The model ID to use. Defaults to `None`, which uses the server-defined default.
video_interval_seconds: Length of a video interval. Defaults to `None`, which uses the server-defined default.
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
vectorize_collection_name: Deprecated, has no effect.

Raises:
pydantic.ValidationError: If `api_endpoint` is not a valid URL.
Expand Down Expand Up @@ -1469,7 +1469,7 @@ def multi2vec_jinaai(

Args:
model: The model to use. Defaults to `None`, which uses the server-defined default.
vectorize_collection_name: Whether to vectorize the collection name. Defaults to `True`.
vectorize_collection_name: Deprecated, has no effect.
base_url: The base URL to use where API requests should go. Defaults to `None`, which uses the server-defined default.
dimensions: The number of dimensions for the generated embeddings (only available for some models). Defaults to `None`, which uses the server-defined default.
image_fields: The image fields to use in vectorization.
Expand Down