diff --git a/python/langsmith/client.py b/python/langsmith/client.py index 4a67a092f..742fe4f53 100644 --- a/python/langsmith/client.py +++ b/python/langsmith/client.py @@ -1714,6 +1714,7 @@ def list_examples( dataset_id: Optional[ID_TYPE] = None, dataset_name: Optional[str] = None, example_ids: Optional[List[ID_TYPE]] = None, + inline_s3_urls: bool = True, ) -> Iterator[ls_schemas.Example]: """Retrieve the example rows of the specified dataset. @@ -1741,6 +1742,7 @@ def list_examples( pass if example_ids is not None: params["id"] = example_ids + params["inline_s3_urls"] = inline_s3_urls yield from ( ls_schemas.Example(**example) for example in self._get_paginated_list("/examples", params=params)