Skip to content

Commit 90cc014

Browse files
authored
Fix all other client calls (#100)
Fix the remaining client calls for document ai. Verified for readme.
1 parent 45a32b2 commit 90cc014

File tree

2 files changed

+22
-19
lines changed

2 files changed

+22
-19
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.58"
3+
version = "0.1.59"
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

+21-18
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ def __init__(self, api_key: str = ""):
3131
self.api_key = os.getenv("TENSORLAKE_API_KEY").strip()
3232

3333
self._client = httpx.Client(base_url=DOC_AI_BASE_URL, timeout=None)
34-
self._async_client = httpx.AsyncClient(base_url=DOC_AI_BASE_URL, timeout=None)
3534
self.__file_uploader__ = FileUploader(api_key=api_key)
3635

3736
def __headers__(self):
@@ -56,7 +55,8 @@ async def get_job_async(self, job_id: str) -> Job:
5655
"""
5756
Get the result of a job by its ID asynchronously.
5857
"""
59-
response = await self._async_client.get(
58+
client = httpx.AsyncClient(base_url=DOC_AI_BASE_URL, timeout=None)
59+
response = await client.get(
6060
url=f"jobs/{job_id}",
6161
headers=self.__headers__(),
6262
)
@@ -73,7 +73,8 @@ async def delete_job_async(self, job_id: str):
7373
"""
7474
Delete a job by its ID asynchronously.
7575
"""
76-
response = await self._async_client.delete(
76+
client = httpx.AsyncClient(base_url=DOC_AI_BASE_URL, timeout=None)
77+
response = await client.delete(
7778
url=f"jobs/{job_id}",
7879
headers=self.__headers__(),
7980
)
@@ -89,7 +90,8 @@ async def jobs_async(self, cursor: Optional[str] = None) -> PaginatedResult[Job]
8990
"""
9091
Get a list of jobs asynchronously.
9192
"""
92-
response = await self._async_client.get(
93+
client = httpx.AsyncClient(base_url=DOC_AI_BASE_URL, timeout=None)
94+
response = await client.get(
9395
url="/jobs",
9496
headers=self.__headers__(),
9597
params={"cursor": cursor} if cursor else None,
@@ -179,7 +181,8 @@ async def files_async(
179181
"""
180182
Get a list of files asynchronously.
181183
"""
182-
response = await self._async_client.get(
184+
client = httpx.AsyncClient(base_url=DOC_AI_BASE_URL, timeout=None)
185+
response = await client.get(
183186
url="/files",
184187
headers=self.__headers__(),
185188
params={"cursor": cursor} if cursor else None,
@@ -234,7 +237,8 @@ async def parse_async(
234237
"""
235238
Parse a document asynchronously.
236239
"""
237-
response = await self._async_client.post(
240+
client = httpx.Client(base_url=DOC_AI_BASE_URL, timeout=None)
241+
response = await client.post(
238242
url="/parse",
239243
headers=self.__headers__(),
240244
json=self.__create_parse_req__(file, options, deliver_webhook),
@@ -283,7 +287,8 @@ async def upload_async(self, path: Union[str, Path]) -> str:
283287
httpx.HTTPError: If the request fails
284288
FileNotFoundError: If the file doesn't exist
285289
"""
286-
return await self.__file_uploader__.upload_file_async(path)
290+
uploader = FileUploader(api_key=api_key)
291+
return await uploader.upload_file_async(path)
287292

288293
def delete_file(self, file_id: str):
289294
"""
@@ -295,7 +300,8 @@ async def delete_file_async(self, file_id: str):
295300
"""
296301
Delete a file by its ID asynchronously.
297302
"""
298-
response = await self._async_client.delete(
303+
client = httpx.AsyncClient(base_url=DOC_AI_BASE_URL, timeout=None)
304+
response = await client.delete(
299305
url=f"files/{file_id}",
300306
headers=self.__headers__(),
301307
)
@@ -332,7 +338,8 @@ async def create_dataset_async(
332338
if existing_dataset:
333339
return existing_dataset
334340

335-
response = await self._async_client.post(
341+
client = httpx.AsyncClient(base_url=DOC_AI_BASE_URL, timeout=None)
342+
response = await client.post(
336343
url="datasets",
337344
headers=self.__headers__(),
338345
json={
@@ -354,19 +361,14 @@ def get_dataset(self, name: str) -> Optional[Dataset]:
354361
Dataset: The dataset.
355362
"""
356363

357-
async def asyncfunc():
358-
dataset = await self.get_dataset_async(name)
359-
return dataset
360-
361-
loop = asyncio.get_event_loop()
362-
dataset = loop.run_until_complete(asyncfunc())
363-
return dataset
364+
return asyncio.run(self.get_dataset_async(name))
364365

365366
async def get_dataset_async(self, name: str) -> Optional[Dataset]:
366367
"""
367368
Get a dataset by its ID asynchronously.
368369
"""
369-
response = await self._async_client.get(
370+
client = httpx.AsyncClient(base_url=DOC_AI_BASE_URL, timeout=None)
371+
response = await client.get(
370372
url=f"datasets/{name}",
371373
headers=self.__headers__(),
372374
)
@@ -406,7 +408,8 @@ async def delete_dataset_async(self, name: str):
406408
"""
407409
Delete a dataset by its ID asynchronously.
408410
"""
409-
response = await self._async_client.delete(
411+
client = httpx.AsyncClient(base_url=DOC_AI_BASE_URL, timeout=None)
412+
response = await client.delete(
410413
url=f"datasets/{name}",
411414
headers=self.__headers__(),
412415
)

0 commit comments

Comments
 (0)