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
10 changes: 6 additions & 4 deletions src/viam/app/data_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1210,8 +1210,9 @@ async def add_binary_data_to_dataset_by_ids(self, binary_ids: List[BinaryID], da

Args:
binary_ids (List[BinaryID]): The IDs of binary data to add to dataset. To retrieve these IDs,
navigate to your dataset's page in the Viam app,
click **...** in the left-hand menu, and click **Copy dataset ID**.
navigate to your data page, click on an image and copy its File ID from the details tab.
To retrieve the dataset ID, navigate to your dataset's page in the Viam app,
and use the left-hand menu to copy the dataset ID.
dataset_id (str): The ID of the dataset to be added to.

For more information, see `Data Client API <https://docs.viam.com/dev/reference/apis/data-client/#addbinarydatatodatasetbyids>`_.
Expand Down Expand Up @@ -1250,8 +1251,9 @@ async def remove_binary_data_from_dataset_by_ids(self, binary_ids: List[BinaryID

Args:
binary_ids (List[BinaryID]): The IDs of binary data to remove from dataset. To retrieve these IDs,
navigate to your dataset's page in the Viam app,
click **...** in the left-hand menu, and click **Copy dataset ID**.
navigate to your data page, click on an image and copy its File ID from the details tab. To
retrieve the dataset ID, navigate to your dataset's page in the Viam app, and use the
left-hand menu to copy the dataset ID.
dataset_id (str): The ID of the dataset to be removed from.

For more information, see `Data Client API <https://docs.viam.com/dev/reference/apis/data-client/#removebinarydatafromdatasetbyids>`_.
Expand Down