chunkr-ai 0.0.20__py3-none-any.whl → 0.0.22__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- chunkr_ai/api/chunkr.py +1 -1
- chunkr_ai/api/decorators.py +3 -3
- chunkr_ai/api/task_response.py +6 -6
- chunkr_ai/models.py +1 -0
- chunkr_ai-0.0.22.dist-info/LICENSE +21 -0
- {chunkr_ai-0.0.20.dist-info → chunkr_ai-0.0.22.dist-info}/METADATA +23 -2
- {chunkr_ai-0.0.20.dist-info → chunkr_ai-0.0.22.dist-info}/RECORD +9 -9
- chunkr_ai-0.0.20.dist-info/LICENSE +0 -0
- {chunkr_ai-0.0.20.dist-info → chunkr_ai-0.0.22.dist-info}/WHEEL +0 -0
- {chunkr_ai-0.0.20.dist-info → chunkr_ai-0.0.22.dist-info}/top_level.txt +0 -0
chunkr_ai/api/chunkr.py
CHANGED
@@ -70,8 +70,8 @@ class Chunkr(ChunkrBase):
|
|
70
70
|
)
|
71
71
|
r.raise_for_status()
|
72
72
|
|
73
|
-
@ensure_client()
|
74
73
|
@anywhere()
|
74
|
+
@ensure_client()
|
75
75
|
async def cancel_task(self, task_id: str) -> None:
|
76
76
|
r = await self._client.get(
|
77
77
|
f"{self.url}/api/v1/task/{task_id}/cancel", headers=self._headers()
|
chunkr_ai/api/decorators.py
CHANGED
@@ -22,12 +22,12 @@ def anywhere():
|
|
22
22
|
def wrapper(*args: P.args, **kwargs: P.kwargs) -> Union[Awaitable[T], T]:
|
23
23
|
global _sync_loop
|
24
24
|
try:
|
25
|
-
|
26
|
-
return async_func(*args, **kwargs)
|
25
|
+
asyncio.get_running_loop()
|
26
|
+
return async_func(*args, **kwargs)
|
27
27
|
except RuntimeError:
|
28
28
|
if _sync_loop is None:
|
29
29
|
_sync_loop = asyncio.new_event_loop()
|
30
|
-
asyncio.set_event_loop(_sync_loop)
|
30
|
+
asyncio.set_event_loop(_sync_loop)
|
31
31
|
try:
|
32
32
|
return _sync_loop.run_until_complete(async_func(*args, **kwargs))
|
33
33
|
finally:
|
chunkr_ai/api/task_response.py
CHANGED
@@ -13,14 +13,14 @@ T = TypeVar("T", bound="TaskResponse")
|
|
13
13
|
class TaskResponse(BaseModel, Generic[T]):
|
14
14
|
configuration: OutputConfiguration
|
15
15
|
created_at: datetime
|
16
|
-
expires_at: Optional[datetime]
|
17
|
-
finished_at: Optional[datetime]
|
18
|
-
message: str
|
19
|
-
output: Optional[OutputResponse]
|
20
|
-
started_at: Optional[datetime]
|
16
|
+
expires_at: Optional[datetime] = None
|
17
|
+
finished_at: Optional[datetime] = None
|
18
|
+
message: Optional[str] = None
|
19
|
+
output: Optional[OutputResponse] = None
|
20
|
+
started_at: Optional[datetime] = None
|
21
21
|
status: Status
|
22
22
|
task_id: str
|
23
|
-
task_url: Optional[str]
|
23
|
+
task_url: Optional[str] = None
|
24
24
|
_client: Optional[ChunkrClientProtocol] = PrivateAttr(default=None)
|
25
25
|
|
26
26
|
def with_client(self, client: ChunkrClientProtocol) -> T:
|
chunkr_ai/models.py
CHANGED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2025 Lumina AI INC
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -1,19 +1,40 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: chunkr-ai
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.22
|
4
4
|
Summary: Python client for Chunkr: open source document intelligence
|
5
5
|
Author-email: Ishaan Kapoor <ishaan@lumina.sh>
|
6
|
+
License: MIT License
|
7
|
+
|
8
|
+
Copyright (c) 2025 Lumina AI INC
|
9
|
+
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
12
|
+
in the Software without restriction, including without limitation the rights
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
15
|
+
furnished to do so, subject to the following conditions:
|
16
|
+
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
18
|
+
copies or substantial portions of the Software.
|
19
|
+
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
26
|
+
SOFTWARE.
|
6
27
|
Project-URL: Homepage, https://chunkr.ai
|
7
28
|
Description-Content-Type: text/markdown
|
8
29
|
License-File: LICENSE
|
9
30
|
Requires-Dist: httpx>=0.25.0
|
10
31
|
Requires-Dist: pillow>=10.0.0
|
11
32
|
Requires-Dist: pydantic>=2.0.0
|
12
|
-
Requires-Dist: pytest-asyncio>=0.21.0
|
13
33
|
Requires-Dist: python-dotenv>=0.19.0
|
14
34
|
Provides-Extra: test
|
15
35
|
Requires-Dist: pytest>=7.0.0; extra == "test"
|
16
36
|
Requires-Dist: pytest-xdist>=3.0.0; extra == "test"
|
37
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == "test"
|
17
38
|
|
18
39
|
# Chunkr Python Client
|
19
40
|
|
@@ -1,17 +1,17 @@
|
|
1
1
|
chunkr_ai/__init__.py,sha256=6KpYv2lmD6S5z2kc9pqwuLP5VDHmOuu2qDZArUIhb1s,53
|
2
|
-
chunkr_ai/models.py,sha256=
|
2
|
+
chunkr_ai/models.py,sha256=MK8FPbWDj1ynvSHaYuslKCPybxLuAlrsVIM3Eym3kKI,750
|
3
3
|
chunkr_ai/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
chunkr_ai/api/api.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
chunkr_ai/api/auth.py,sha256=hlv0GiUmlsbFO1wLL9sslqOnsBSoBqkL_6Mk2SDvxgE,413
|
6
|
-
chunkr_ai/api/chunkr.py,sha256=
|
6
|
+
chunkr_ai/api/chunkr.py,sha256=ZjDVUeR1KPiLLHbj7AJipt-prBTw7a_GvjJ0nd7JV7c,2674
|
7
7
|
chunkr_ai/api/chunkr_base.py,sha256=TDqEwCCfgshggi_Mzv76FhPj5z21QP8EVj7siczvfao,9826
|
8
8
|
chunkr_ai/api/config.py,sha256=NmPTsDvcjkvNx0gNzDTz-oFG5rQC7jm-H70O_crJCw8,4478
|
9
|
-
chunkr_ai/api/decorators.py,sha256=
|
9
|
+
chunkr_ai/api/decorators.py,sha256=y_Z9z0O2XXiX9z6jWDwdbCPdQyMLnjE0pGkJjHQEv_Q,2652
|
10
10
|
chunkr_ai/api/misc.py,sha256=wUG4SpfEEo7NcVK47gmw42dRy9zT5F9S2DtVC4T4ERs,4877
|
11
11
|
chunkr_ai/api/protocol.py,sha256=Nt8aWr4ouVwCvoLqVI5vnXJhT2cvxt0sQC-svUk2G5w,458
|
12
|
-
chunkr_ai/api/task_response.py,sha256=
|
13
|
-
chunkr_ai-0.0.
|
14
|
-
chunkr_ai-0.0.
|
15
|
-
chunkr_ai-0.0.
|
16
|
-
chunkr_ai-0.0.
|
17
|
-
chunkr_ai-0.0.
|
12
|
+
chunkr_ai/api/task_response.py,sha256=yjlUOADqf0O9X-yF7lbZuv39ttvitZHQpbGy3DtrJ80,3909
|
13
|
+
chunkr_ai-0.0.22.dist-info/LICENSE,sha256=w3R12yNDyZpMiy2lxy_hvNbsldC75ww79sF0u11rkho,1069
|
14
|
+
chunkr_ai-0.0.22.dist-info/METADATA,sha256=ro8wcqBnNGLkIhh7XrbSxdl4zaWXhA0d5SUgBQteAec,6952
|
15
|
+
chunkr_ai-0.0.22.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
16
|
+
chunkr_ai-0.0.22.dist-info/top_level.txt,sha256=0IZY7PZIiS8bw5r4NUQRUQ-ATi-L_3vLQVq3ZLouOW8,10
|
17
|
+
chunkr_ai-0.0.22.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|