Skip to content
Open
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
6 changes: 6 additions & 0 deletions vertexai/_genai/types/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -13325,6 +13325,12 @@ def to_bigframes(
raise ValueError("Multimodal dataset bigquery source uri is not set.")
return bigframes.pandas.read_gbq_table(self.bigquery_uri.removeprefix("bq://"))

def to_batch_job_source(self) -> BatchJobSource:
"""Converts the dataset to a BatchJobSource."""
return genai_types.BatchJobSource(
vertex_dataset_name=self.name,
)


class MultimodalDatasetDict(TypedDict, total=False):
"""Represents a multimodal dataset."""
Expand Down
Loading