Skip to content

feat: GenAI SDK client(multimodal) - Return the assembled table as a DataFrame from datasets.assemble.#6905

Open
copybara-service[bot] wants to merge 1 commit into
mainfrom
copybara_934391455
Open

feat: GenAI SDK client(multimodal) - Return the assembled table as a DataFrame from datasets.assemble.#6905
copybara-service[bot] wants to merge 1 commit into
mainfrom
copybara_934391455

Conversation

@copybara-service

Copy link
Copy Markdown
Contributor

feat: GenAI SDK client(multimodal) - Return the assembled table as a DataFrame from datasets.assemble.

BREAKING CHANGE: datasets.assemble now returns tuple[str, Optional[bigframes.pandas.DataFrame]] (the BigQuery table id without the bq:// prefix, and the assembled table loaded as a BigFrames DataFrame) instead of the BigQuery URI str. The table is read into a DataFrame unless the new top-level load_dataframe parameter is set to False.

Before:

uri = client.datasets.assemble(name=..., gemini_request_read_config=...)

After:

table_id, _ = client.datasets.assemble(name=..., gemini_request_read_config=..., load_dataframe=False)

@copybara-service copybara-service Bot requested a review from a team as a code owner June 19, 2026 14:38
@product-auto-label product-auto-label Bot added size: m Pull request size is medium. api: vertex-ai Issues related to the googleapis/python-aiplatform API. labels Jun 19, 2026
…DataFrame from `datasets.assemble`.

BREAKING CHANGE: `datasets.assemble` now returns `tuple[str, Optional[bigframes.pandas.DataFrame]]` (the BigQuery table id without the `bq://` prefix, and the assembled table loaded as a BigFrames DataFrame) instead of the BigQuery URI `str`. The table is read into a DataFrame unless the new top-level `load_dataframe` parameter is set to `False`.

Before:

```
uri = client.datasets.assemble(name=..., gemini_request_read_config=...)
```

After:

```
table_id, _ = client.datasets.assemble(name=..., gemini_request_read_config=..., load_dataframe=False)
```

PiperOrigin-RevId: 934391455
@copybara-service copybara-service Bot force-pushed the copybara_934391455 branch from 37550e2 to 6f18240 Compare June 19, 2026 15:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

api: vertex-ai Issues related to the googleapis/python-aiplatform API. google-contributor size: m Pull request size is medium.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant