Skip to content

Commit 5357142

Browse files
authored
Fix datasets API to match current API (#91)
Fixes to match the current API and docs example.
1 parent bddb309 commit 5357142

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tensorlake"
3-
version = "0.1.50"
3+
version = "0.1.51"
44
description = "Tensorlake SDK for Document Ingestion API and Serverless Workflows"
55
authors = ["Tensorlake Inc. <[email protected]>"]
66
homepage = "https://github.com/tensorlakeai/tensorlake"

src/tensorlake/documentai/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ async def create_dataset_async(
341341
"settings": self.__create_parse_settings__(dataset.options),
342342
},
343343
)
344-
return await self.get_dataset_async(response.json().get("id"))
344+
return await self.get_dataset_async(dataset.name)
345345

346346
def get_dataset(self, name: str) -> Optional[Dataset]:
347347
"""

src/tensorlake/documentai/datasets.py

-2
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ class DatasetItems(BaseModel):
116116
"""
117117

118118
cursor: Optional[str] = None
119-
total_pages: int = 0
120119
items: dict[DatasetItemInfo, Output] = {}
121120

122121

@@ -275,6 +274,5 @@ async def items_async(self, cursor: Optional[str] = None) -> DatasetItems:
275274

276275
return DatasetItems(
277276
cursor=jobs.next_cursor,
278-
total_pages=jobs.total_pages,
279277
items=outputs,
280278
)

0 commit comments

Comments
 (0)