@@ -31,7 +31,6 @@ def __init__(self, api_key: str = ""):
31
31
self .api_key = os .getenv ("TENSORLAKE_API_KEY" ).strip ()
32
32
33
33
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 )
35
34
self .__file_uploader__ = FileUploader (api_key = api_key )
36
35
37
36
def __headers__ (self ):
@@ -56,7 +55,8 @@ async def get_job_async(self, job_id: str) -> Job:
56
55
"""
57
56
Get the result of a job by its ID asynchronously.
58
57
"""
59
- response = await self ._async_client .get (
58
+ client = httpx .AsyncClient (base_url = DOC_AI_BASE_URL , timeout = None )
59
+ response = await client .get (
60
60
url = f"jobs/{ job_id } " ,
61
61
headers = self .__headers__ (),
62
62
)
@@ -73,7 +73,8 @@ async def delete_job_async(self, job_id: str):
73
73
"""
74
74
Delete a job by its ID asynchronously.
75
75
"""
76
- response = await self ._async_client .delete (
76
+ client = httpx .AsyncClient (base_url = DOC_AI_BASE_URL , timeout = None )
77
+ response = await client .delete (
77
78
url = f"jobs/{ job_id } " ,
78
79
headers = self .__headers__ (),
79
80
)
@@ -89,7 +90,8 @@ async def jobs_async(self, cursor: Optional[str] = None) -> PaginatedResult[Job]
89
90
"""
90
91
Get a list of jobs asynchronously.
91
92
"""
92
- response = await self ._async_client .get (
93
+ client = httpx .AsyncClient (base_url = DOC_AI_BASE_URL , timeout = None )
94
+ response = await client .get (
93
95
url = "/jobs" ,
94
96
headers = self .__headers__ (),
95
97
params = {"cursor" : cursor } if cursor else None ,
@@ -179,7 +181,8 @@ async def files_async(
179
181
"""
180
182
Get a list of files asynchronously.
181
183
"""
182
- response = await self ._async_client .get (
184
+ client = httpx .AsyncClient (base_url = DOC_AI_BASE_URL , timeout = None )
185
+ response = await client .get (
183
186
url = "/files" ,
184
187
headers = self .__headers__ (),
185
188
params = {"cursor" : cursor } if cursor else None ,
@@ -234,7 +237,8 @@ async def parse_async(
234
237
"""
235
238
Parse a document asynchronously.
236
239
"""
237
- response = await self ._async_client .post (
240
+ client = httpx .Client (base_url = DOC_AI_BASE_URL , timeout = None )
241
+ response = await client .post (
238
242
url = "/parse" ,
239
243
headers = self .__headers__ (),
240
244
json = self .__create_parse_req__ (file , options , deliver_webhook ),
@@ -283,7 +287,8 @@ async def upload_async(self, path: Union[str, Path]) -> str:
283
287
httpx.HTTPError: If the request fails
284
288
FileNotFoundError: If the file doesn't exist
285
289
"""
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 )
287
292
288
293
def delete_file (self , file_id : str ):
289
294
"""
@@ -295,7 +300,8 @@ async def delete_file_async(self, file_id: str):
295
300
"""
296
301
Delete a file by its ID asynchronously.
297
302
"""
298
- response = await self ._async_client .delete (
303
+ client = httpx .AsyncClient (base_url = DOC_AI_BASE_URL , timeout = None )
304
+ response = await client .delete (
299
305
url = f"files/{ file_id } " ,
300
306
headers = self .__headers__ (),
301
307
)
@@ -332,7 +338,8 @@ async def create_dataset_async(
332
338
if existing_dataset :
333
339
return existing_dataset
334
340
335
- response = await self ._async_client .post (
341
+ client = httpx .AsyncClient (base_url = DOC_AI_BASE_URL , timeout = None )
342
+ response = await client .post (
336
343
url = "datasets" ,
337
344
headers = self .__headers__ (),
338
345
json = {
@@ -354,19 +361,14 @@ def get_dataset(self, name: str) -> Optional[Dataset]:
354
361
Dataset: The dataset.
355
362
"""
356
363
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 ))
364
365
365
366
async def get_dataset_async (self , name : str ) -> Optional [Dataset ]:
366
367
"""
367
368
Get a dataset by its ID asynchronously.
368
369
"""
369
- response = await self ._async_client .get (
370
+ client = httpx .AsyncClient (base_url = DOC_AI_BASE_URL , timeout = None )
371
+ response = await client .get (
370
372
url = f"datasets/{ name } " ,
371
373
headers = self .__headers__ (),
372
374
)
@@ -406,7 +408,8 @@ async def delete_dataset_async(self, name: str):
406
408
"""
407
409
Delete a dataset by its ID asynchronously.
408
410
"""
409
- response = await self ._async_client .delete (
411
+ client = httpx .AsyncClient (base_url = DOC_AI_BASE_URL , timeout = None )
412
+ response = await client .delete (
410
413
url = f"datasets/{ name } " ,
411
414
headers = self .__headers__ (),
412
415
)
0 commit comments