chunkr-ai 0.1.0a6__py3-none-any.whl → 0.1.0a7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- chunkr_ai/__init__.py +2 -0
- chunkr_ai/_client.py +31 -3
- chunkr_ai/_constants.py +5 -5
- chunkr_ai/_exceptions.py +4 -0
- chunkr_ai/_models.py +1 -1
- chunkr_ai/_types.py +35 -1
- chunkr_ai/_utils/__init__.py +1 -0
- chunkr_ai/_utils/_typing.py +5 -0
- chunkr_ai/_version.py +1 -1
- chunkr_ai/resources/__init__.py +14 -0
- chunkr_ai/resources/files.py +3 -3
- chunkr_ai/resources/tasks/__init__.py +14 -0
- chunkr_ai/resources/tasks/extract.py +409 -0
- chunkr_ai/resources/tasks/parse.py +124 -284
- chunkr_ai/resources/tasks/tasks.py +62 -14
- chunkr_ai/resources/webhooks.py +193 -0
- chunkr_ai/types/__init__.py +27 -1
- chunkr_ai/types/bounding_box.py +19 -0
- chunkr_ai/types/cell.py +39 -0
- chunkr_ai/types/cell_style.py +28 -0
- chunkr_ai/types/chunk.py +40 -0
- chunkr_ai/types/chunk_processing.py +40 -0
- chunkr_ai/types/chunk_processing_param.py +42 -0
- chunkr_ai/types/extract_configuration.py +24 -0
- chunkr_ai/types/extract_output_response.py +19 -0
- chunkr_ai/types/file_create_params.py +2 -1
- chunkr_ai/types/file_info.py +21 -0
- chunkr_ai/types/generation_config.py +29 -0
- chunkr_ai/types/generation_config_param.py +29 -0
- chunkr_ai/types/llm_processing.py +36 -0
- chunkr_ai/types/llm_processing_param.py +36 -0
- chunkr_ai/types/ocr_result.py +28 -0
- chunkr_ai/types/page.py +27 -0
- chunkr_ai/types/parse_configuration.py +64 -0
- chunkr_ai/types/parse_configuration_param.py +65 -0
- chunkr_ai/types/parse_output_response.py +29 -0
- chunkr_ai/types/segment.py +109 -0
- chunkr_ai/types/segment_processing.py +228 -0
- chunkr_ai/types/segment_processing_param.py +229 -0
- chunkr_ai/types/task_extract_updated_webhook_event.py +22 -0
- chunkr_ai/types/task_list_params.py +7 -1
- chunkr_ai/types/task_parse_updated_webhook_event.py +22 -0
- chunkr_ai/types/task_response.py +68 -0
- chunkr_ai/types/tasks/__init__.py +7 -1
- chunkr_ai/types/tasks/extract_create_params.py +47 -0
- chunkr_ai/types/tasks/extract_create_response.py +214 -0
- chunkr_ai/types/tasks/extract_get_params.py +21 -0
- chunkr_ai/types/tasks/extract_get_response.py +214 -0
- chunkr_ai/types/tasks/parse_create_params.py +25 -793
- chunkr_ai/types/tasks/parse_create_response.py +55 -0
- chunkr_ai/types/tasks/parse_get_params.py +21 -0
- chunkr_ai/types/tasks/parse_get_response.py +55 -0
- chunkr_ai/types/unwrap_webhook_event.py +11 -0
- chunkr_ai/types/version_info.py +31 -0
- chunkr_ai/types/webhook_url_response.py +9 -0
- {chunkr_ai-0.1.0a6.dist-info → chunkr_ai-0.1.0a7.dist-info}/METADATA +14 -13
- chunkr_ai-0.1.0a7.dist-info/RECORD +86 -0
- chunkr_ai/types/task.py +0 -1225
- chunkr_ai/types/tasks/parse_update_params.py +0 -845
- chunkr_ai-0.1.0a6.dist-info/RECORD +0 -52
- {chunkr_ai-0.1.0a6.dist-info → chunkr_ai-0.1.0a7.dist-info}/WHEEL +0 -0
- {chunkr_ai-0.1.0a6.dist-info → chunkr_ai-0.1.0a7.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,55 @@
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
+
|
3
|
+
from typing import Optional
|
4
|
+
from datetime import datetime
|
5
|
+
from typing_extensions import Literal
|
6
|
+
|
7
|
+
from ..._models import BaseModel
|
8
|
+
from ..file_info import FileInfo
|
9
|
+
from ..version_info import VersionInfo
|
10
|
+
from ..parse_configuration import ParseConfiguration
|
11
|
+
from ..parse_output_response import ParseOutputResponse
|
12
|
+
|
13
|
+
__all__ = ["ParseCreateResponse"]
|
14
|
+
|
15
|
+
|
16
|
+
class ParseCreateResponse(BaseModel):
|
17
|
+
configuration: ParseConfiguration
|
18
|
+
|
19
|
+
created_at: datetime
|
20
|
+
"""The date and time when the task was created and queued."""
|
21
|
+
|
22
|
+
file_info: FileInfo
|
23
|
+
"""Information about the input file."""
|
24
|
+
|
25
|
+
message: str
|
26
|
+
"""A message describing the task's status or any errors that occurred."""
|
27
|
+
|
28
|
+
status: Literal["Starting", "Processing", "Succeeded", "Failed", "Cancelled"]
|
29
|
+
"""The status of the task."""
|
30
|
+
|
31
|
+
task_id: str
|
32
|
+
"""The unique identifier for the task."""
|
33
|
+
|
34
|
+
task_type: Literal["Parse", "Extract"]
|
35
|
+
|
36
|
+
version_info: VersionInfo
|
37
|
+
"""Version information for the task."""
|
38
|
+
|
39
|
+
expires_at: Optional[datetime] = None
|
40
|
+
"""The date and time when the task will expire."""
|
41
|
+
|
42
|
+
finished_at: Optional[datetime] = None
|
43
|
+
"""The date and time when the task was finished."""
|
44
|
+
|
45
|
+
input_file_url: Optional[str] = None
|
46
|
+
"""The presigned URL of the input file. Deprecated use `file_info.url` instead."""
|
47
|
+
|
48
|
+
output: Optional[ParseOutputResponse] = None
|
49
|
+
"""The processed results of a document parsing task"""
|
50
|
+
|
51
|
+
started_at: Optional[datetime] = None
|
52
|
+
"""The date and time when the task was started."""
|
53
|
+
|
54
|
+
task_url: Optional[str] = None
|
55
|
+
"""The presigned URL of the task."""
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
|
5
|
+
from typing_extensions import TypedDict
|
6
|
+
|
7
|
+
__all__ = ["ParseGetParams"]
|
8
|
+
|
9
|
+
|
10
|
+
class ParseGetParams(TypedDict, total=False):
|
11
|
+
base64_urls: bool
|
12
|
+
"""Whether to return base64 encoded URLs.
|
13
|
+
|
14
|
+
If false, the URLs will be returned as presigned URLs.
|
15
|
+
"""
|
16
|
+
|
17
|
+
include_chunks: bool
|
18
|
+
"""Whether to include chunks in the output response"""
|
19
|
+
|
20
|
+
wait_for_completion: bool
|
21
|
+
"""Whether to wait for the task to complete"""
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
+
|
3
|
+
from typing import Optional
|
4
|
+
from datetime import datetime
|
5
|
+
from typing_extensions import Literal
|
6
|
+
|
7
|
+
from ..._models import BaseModel
|
8
|
+
from ..file_info import FileInfo
|
9
|
+
from ..version_info import VersionInfo
|
10
|
+
from ..parse_configuration import ParseConfiguration
|
11
|
+
from ..parse_output_response import ParseOutputResponse
|
12
|
+
|
13
|
+
__all__ = ["ParseGetResponse"]
|
14
|
+
|
15
|
+
|
16
|
+
class ParseGetResponse(BaseModel):
|
17
|
+
configuration: ParseConfiguration
|
18
|
+
|
19
|
+
created_at: datetime
|
20
|
+
"""The date and time when the task was created and queued."""
|
21
|
+
|
22
|
+
file_info: FileInfo
|
23
|
+
"""Information about the input file."""
|
24
|
+
|
25
|
+
message: str
|
26
|
+
"""A message describing the task's status or any errors that occurred."""
|
27
|
+
|
28
|
+
status: Literal["Starting", "Processing", "Succeeded", "Failed", "Cancelled"]
|
29
|
+
"""The status of the task."""
|
30
|
+
|
31
|
+
task_id: str
|
32
|
+
"""The unique identifier for the task."""
|
33
|
+
|
34
|
+
task_type: Literal["Parse", "Extract"]
|
35
|
+
|
36
|
+
version_info: VersionInfo
|
37
|
+
"""Version information for the task."""
|
38
|
+
|
39
|
+
expires_at: Optional[datetime] = None
|
40
|
+
"""The date and time when the task will expire."""
|
41
|
+
|
42
|
+
finished_at: Optional[datetime] = None
|
43
|
+
"""The date and time when the task was finished."""
|
44
|
+
|
45
|
+
input_file_url: Optional[str] = None
|
46
|
+
"""The presigned URL of the input file. Deprecated use `file_info.url` instead."""
|
47
|
+
|
48
|
+
output: Optional[ParseOutputResponse] = None
|
49
|
+
"""The processed results of a document parsing task"""
|
50
|
+
|
51
|
+
started_at: Optional[datetime] = None
|
52
|
+
"""The date and time when the task was started."""
|
53
|
+
|
54
|
+
task_url: Optional[str] = None
|
55
|
+
"""The presigned URL of the task."""
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
+
|
3
|
+
from typing import Union
|
4
|
+
from typing_extensions import TypeAlias
|
5
|
+
|
6
|
+
from .task_parse_updated_webhook_event import TaskParseUpdatedWebhookEvent
|
7
|
+
from .task_extract_updated_webhook_event import TaskExtractUpdatedWebhookEvent
|
8
|
+
|
9
|
+
__all__ = ["UnwrapWebhookEvent"]
|
10
|
+
|
11
|
+
UnwrapWebhookEvent: TypeAlias = Union[TaskExtractUpdatedWebhookEvent, TaskParseUpdatedWebhookEvent]
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
+
|
3
|
+
from typing import Union
|
4
|
+
from typing_extensions import Literal, TypeAlias
|
5
|
+
|
6
|
+
from pydantic import Field as FieldInfo
|
7
|
+
|
8
|
+
from .._models import BaseModel
|
9
|
+
|
10
|
+
__all__ = ["VersionInfo", "ClientVersion", "ClientVersionManualSDK", "ClientVersionGeneratedSDK"]
|
11
|
+
|
12
|
+
|
13
|
+
class ClientVersionManualSDK(BaseModel):
|
14
|
+
manual_sdk: str = FieldInfo(alias="ManualSdk")
|
15
|
+
"""Version of the current manually-maintained SDK"""
|
16
|
+
|
17
|
+
|
18
|
+
class ClientVersionGeneratedSDK(BaseModel):
|
19
|
+
generated_sdk: str = FieldInfo(alias="GeneratedSdk")
|
20
|
+
"""Version of the auto-generated SDK"""
|
21
|
+
|
22
|
+
|
23
|
+
ClientVersion: TypeAlias = Union[Literal["Legacy"], ClientVersionManualSDK, ClientVersionGeneratedSDK]
|
24
|
+
|
25
|
+
|
26
|
+
class VersionInfo(BaseModel):
|
27
|
+
client_version: ClientVersion
|
28
|
+
"""The version of the client."""
|
29
|
+
|
30
|
+
server_version: str
|
31
|
+
"""The version of the server."""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: chunkr-ai
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.0a7
|
4
4
|
Summary: The official Python library for the chunkr API
|
5
5
|
Project-URL: Homepage, https://github.com/lumina-ai-inc/chunkr-python
|
6
6
|
Project-URL: Repository, https://github.com/lumina-ai-inc/chunkr-python
|
@@ -31,6 +31,8 @@ Requires-Dist: typing-extensions<5,>=4.10
|
|
31
31
|
Provides-Extra: aiohttp
|
32
32
|
Requires-Dist: aiohttp; extra == 'aiohttp'
|
33
33
|
Requires-Dist: httpx-aiohttp>=0.1.8; extra == 'aiohttp'
|
34
|
+
Provides-Extra: webhooks
|
35
|
+
Requires-Dist: standardwebhooks; extra == 'webhooks'
|
34
36
|
Description-Content-Type: text/markdown
|
35
37
|
|
36
38
|
# Chunkr Python API library
|
@@ -70,10 +72,10 @@ client = Chunkr(
|
|
70
72
|
api_key=os.environ.get("CHUNKR_API_KEY"), # This is the default and can be omitted
|
71
73
|
)
|
72
74
|
|
73
|
-
|
75
|
+
parse = client.tasks.parse.create(
|
74
76
|
file="string",
|
75
77
|
)
|
76
|
-
print(
|
78
|
+
print(parse.task_id)
|
77
79
|
```
|
78
80
|
|
79
81
|
While you can provide an `api_key` keyword argument,
|
@@ -96,10 +98,10 @@ client = AsyncChunkr(
|
|
96
98
|
|
97
99
|
|
98
100
|
async def main() -> None:
|
99
|
-
|
101
|
+
parse = await client.tasks.parse.create(
|
100
102
|
file="string",
|
101
103
|
)
|
102
|
-
print(
|
104
|
+
print(parse.task_id)
|
103
105
|
|
104
106
|
|
105
107
|
asyncio.run(main())
|
@@ -131,10 +133,10 @@ async def main() -> None:
|
|
131
133
|
api_key="My API Key",
|
132
134
|
http_client=DefaultAioHttpClient(),
|
133
135
|
) as client:
|
134
|
-
|
136
|
+
parse = await client.tasks.parse.create(
|
135
137
|
file="string",
|
136
138
|
)
|
137
|
-
print(
|
139
|
+
print(parse.task_id)
|
138
140
|
|
139
141
|
|
140
142
|
asyncio.run(main())
|
@@ -229,11 +231,11 @@ from chunkr_ai import Chunkr
|
|
229
231
|
|
230
232
|
client = Chunkr()
|
231
233
|
|
232
|
-
|
234
|
+
parse = client.tasks.parse.create(
|
233
235
|
file="file",
|
234
236
|
chunk_processing={},
|
235
237
|
)
|
236
|
-
print(
|
238
|
+
print(parse.chunk_processing)
|
237
239
|
```
|
238
240
|
|
239
241
|
## File uploads
|
@@ -248,7 +250,6 @@ client = Chunkr()
|
|
248
250
|
|
249
251
|
client.files.create(
|
250
252
|
file=Path("/path/to/file"),
|
251
|
-
file_metadata="file_metadata",
|
252
253
|
)
|
253
254
|
```
|
254
255
|
|
@@ -299,7 +300,7 @@ Error codes are as follows:
|
|
299
300
|
|
300
301
|
### Retries
|
301
302
|
|
302
|
-
Certain errors are automatically retried
|
303
|
+
Certain errors are automatically retried 2 times by default, with a short exponential backoff.
|
303
304
|
Connection errors (for example, due to a network connectivity problem), 408 Request Timeout, 409 Conflict,
|
304
305
|
429 Rate Limit, and >=500 Internal errors are all retried by default.
|
305
306
|
|
@@ -322,7 +323,7 @@ client.with_options(max_retries=5).tasks.parse.create(
|
|
322
323
|
|
323
324
|
### Timeouts
|
324
325
|
|
325
|
-
By default requests time out after
|
326
|
+
By default requests time out after 1 minute. You can configure this with a `timeout` option,
|
326
327
|
which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/timeouts/#fine-tuning-the-configuration) object:
|
327
328
|
|
328
329
|
```python
|
@@ -330,7 +331,7 @@ from chunkr_ai import Chunkr
|
|
330
331
|
|
331
332
|
# Configure the default for all requests:
|
332
333
|
client = Chunkr(
|
333
|
-
# 20 seconds (default is
|
334
|
+
# 20 seconds (default is 1 minute)
|
334
335
|
timeout=20.0,
|
335
336
|
)
|
336
337
|
|
@@ -0,0 +1,86 @@
|
|
1
|
+
chunkr_ai/__init__.py,sha256=631z4iVHDBnkIeka-8y0rEwLNmqkoW1XvQZHyrVBvBE,2651
|
2
|
+
chunkr_ai/_base_client.py,sha256=Nv5b_rmVdmmPbF42mlOfymbSC6lxcYsrsvBhKSBDXWQ,67038
|
3
|
+
chunkr_ai/_client.py,sha256=mrlnWoHnQ8A8N1KZfjXlql9ZHT3CU0Y6W3tqhAVETBQ,17329
|
4
|
+
chunkr_ai/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
|
5
|
+
chunkr_ai/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
6
|
+
chunkr_ai/_exceptions.py,sha256=haF-MOTaZgqXRgzvN8v9NuJ5KHfdvCclJUephO3pTcs,3274
|
7
|
+
chunkr_ai/_files.py,sha256=SUFtic_gwSzbvhLtMdQ7TBem8szrqZE2nZFFMRa0KTw,3619
|
8
|
+
chunkr_ai/_models.py,sha256=6rDtUmk6jhjGN1q96CUICYfBunNXNhhEk_AqztTm3uE,30012
|
9
|
+
chunkr_ai/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
|
10
|
+
chunkr_ai/_resource.py,sha256=f5tiwjxcKdbeMor8idoHtMFTUhqD9yc2xXtq5rqeLLk,1100
|
11
|
+
chunkr_ai/_response.py,sha256=xXNpF53hiYARmAW7npKuxQ5UHAEjgAzm7ME_L3eIstY,28800
|
12
|
+
chunkr_ai/_streaming.py,sha256=ZmyrVWk7-AWkLAATR55WgNxnyFzYmaqJt2LthA_PTqQ,10100
|
13
|
+
chunkr_ai/_types.py,sha256=ErD8rLf2cfCnQELHnoQ85AfP1LP8ZWWhMPvPv-lFPSg,7299
|
14
|
+
chunkr_ai/_version.py,sha256=9yvEtXAK21WzPopTMdCgkacDJN300kbBklTQjsD2Mu4,169
|
15
|
+
chunkr_ai/pagination.py,sha256=bT-ErcJ80YlKBV6tWq2s9uqg-wv7o66SKe_AgUAGrKc,3533
|
16
|
+
chunkr_ai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
+
chunkr_ai/_utils/__init__.py,sha256=QMTNChOzCs5KF_NTxyb5XpFyyfmHiQASrFovz3dHmK8,2104
|
18
|
+
chunkr_ai/_utils/_logs.py,sha256=ylZvP2JTPNlFCbxYajpsnWkA253kDFgnFYDWWuvgf_Q,780
|
19
|
+
chunkr_ai/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
|
20
|
+
chunkr_ai/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
21
|
+
chunkr_ai/_utils/_resources_proxy.py,sha256=3KbSCApjaz7x_frFAxJe9ltY-dIJBQUVnIhR2GvVRY8,604
|
22
|
+
chunkr_ai/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
23
|
+
chunkr_ai/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
24
|
+
chunkr_ai/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
|
25
|
+
chunkr_ai/_utils/_typing.py,sha256=UAoN7JEd8A-T32Cju-dL5EyqWKO_ktG4VDQ3KOhzqG0,4787
|
26
|
+
chunkr_ai/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
|
27
|
+
chunkr_ai/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
28
|
+
chunkr_ai/resources/__init__.py,sha256=AbJ_7zmjJI5AxDXvFbXeQU_4jugnj7MRw7A20op2i1c,1902
|
29
|
+
chunkr_ai/resources/files.py,sha256=QyM6_z4rc1ySpgHjTKH-opqge5Jx6IxwwPnjrFcXEVg,27260
|
30
|
+
chunkr_ai/resources/health.py,sha256=XTvUtRs5hEK-uccb_40mcIex85eEUo1a171nQUjpSOs,4965
|
31
|
+
chunkr_ai/resources/webhooks.py,sha256=gOzCqEhrTdTUSNXX6hqWb9Dcj3yug_9OANIID7cQGM4,7006
|
32
|
+
chunkr_ai/resources/tasks/__init__.py,sha256=wDCnwtnpTfiaLg7NBxoLZYh2TtOw44_DSqtJa_TjmXU,1439
|
33
|
+
chunkr_ai/resources/tasks/extract.py,sha256=wqjjb3o1WehOPUhcS_M0qMq1QYDdgh-LeHuau2Z1q4o,16048
|
34
|
+
chunkr_ai/resources/tasks/parse.py,sha256=FEAd_he_GbSiIRJFw3doAgwnpV3eZpLaC4hxBzFOYlg,20532
|
35
|
+
chunkr_ai/resources/tasks/tasks.py,sha256=opOQ7LSD1bPrkuVOQkw5_qECK6MZ1LvfZj1__U853RU,24740
|
36
|
+
chunkr_ai/types/__init__.py,sha256=vBUEzAt6cblUc44h8NivvVrua_CmaIujTvjvf8B0_S0,2499
|
37
|
+
chunkr_ai/types/bounding_box.py,sha256=JDZlhJJl4lg6RYGf8VpC46soQfQ10-K8YwHHA6XBFkM,431
|
38
|
+
chunkr_ai/types/cell.py,sha256=D-S_XAzmOJs0Lo2RgY7T3h_ChdhSrRrI8IN4qo2sGOU,1143
|
39
|
+
chunkr_ai/types/cell_style.py,sha256=VqSz6pZ7rjmHYrq_S63IOFPaWvXjWhNUIGc3V4UlF6U,873
|
40
|
+
chunkr_ai/types/chunk.py,sha256=GTDTWZswdik-DYxm6-wHsBTYvHS_4F2peX5-YF6PXRg,1117
|
41
|
+
chunkr_ai/types/chunk_processing.py,sha256=1yV2A52MGNqs_F_RLMCzBuKqFRrtTzaM0tGh-L2u4sI,1197
|
42
|
+
chunkr_ai/types/chunk_processing_param.py,sha256=MBl42a2r5xczGe5ST2IJQB1a4DjAajw4ZQMTxzDC4A8,1294
|
43
|
+
chunkr_ai/types/delete.py,sha256=EU78fjXpc8-fqvgcFTuJ0ejs5u_UjbhOz5frkeUHvxY,225
|
44
|
+
chunkr_ai/types/extract_configuration.py,sha256=OCs3SnuS8qXWB926o8Gv1Y2AuNszplGmPHBT9-iMR3g,691
|
45
|
+
chunkr_ai/types/extract_output_response.py,sha256=2TPa1TbcGpT6rs094pooHG1hlHyNuOTOLaVk6UEXd_g,508
|
46
|
+
chunkr_ai/types/file.py,sha256=kOxR0g-3A-qOxz2cjuTcq0wFMqPoph9uQuLYQ56zb-c,718
|
47
|
+
chunkr_ai/types/file_create_params.py,sha256=_1Dr3FlO9BOv6gzhCN4g46_otCBqEdLe0mnxpdaRPaE,468
|
48
|
+
chunkr_ai/types/file_info.py,sha256=78r0AITTY2nlZyW9pHy7dywVXyOsCK1Ysmmc-wfQBVM,499
|
49
|
+
chunkr_ai/types/file_list_params.py,sha256=oJGTf88aAxBhNfmQDbxGT63b95HdSbMXUubKjXM22_U,822
|
50
|
+
chunkr_ai/types/file_url.py,sha256=L434WnOXkNmt59dJiaAgT1_3pN3BIsxm2q14zHQK6xY,365
|
51
|
+
chunkr_ai/types/file_url_params.py,sha256=ZHfKiy_6B25StdDemulavGcsPggNNMKLWf6KN7xfPTY,413
|
52
|
+
chunkr_ai/types/files_list_response.py,sha256=ggSRWhTzZWjcDXxStyCzrYICXXB5TqnL2j-SN9mHH_g,506
|
53
|
+
chunkr_ai/types/generation_config.py,sha256=9gfwdd228x29jC1egxq3IreKwgkGZCjSWHCXIkzQwqE,958
|
54
|
+
chunkr_ai/types/generation_config_param.py,sha256=9E0Mhee-NInwOzjXmq3gpd8G5drsPBpzFs0AA2ywTc0,960
|
55
|
+
chunkr_ai/types/health_check_response.py,sha256=6Zn5YYHCQf2RgMjDlf39mtiTPqfaBfC9Vv599U_rKCI,200
|
56
|
+
chunkr_ai/types/llm_processing.py,sha256=cTm5LBBCpnmA4u-nGQdO67JYCTizzf4lJAvUsG6BX2Q,1095
|
57
|
+
chunkr_ai/types/llm_processing_param.py,sha256=CSnW4-5-32Pzoo-G7G3p_NUvljtCkNguj1dHVc2Y4cA,1135
|
58
|
+
chunkr_ai/types/ocr_result.py,sha256=EdIvpuccQ_8A8ml7yVCOEOfBoewgwTBzVJZ_les9udM,740
|
59
|
+
chunkr_ai/types/page.py,sha256=ADdGJisS-GxBD_wdu3q1pmikgJ7twFsP0choDEXw9ro,690
|
60
|
+
chunkr_ai/types/parse_configuration.py,sha256=MOTypSv3kiwoLEcjAgsyc674CMG4xw6SxXEXweFU6V4,2567
|
61
|
+
chunkr_ai/types/parse_configuration_param.py,sha256=hJWngWEtT3RYgHqkAvmS4RG7cODla6i-Cp8ubtZfmz0,2544
|
62
|
+
chunkr_ai/types/parse_output_response.py,sha256=KfRFY5PnchJfEWr4jy3Dd-3AWeImGE5BP_NMFC5I6_c,947
|
63
|
+
chunkr_ai/types/segment.py,sha256=_QNYmAMSZOCNv67CwsmIOq7X0ZeYsj6jzQbKhbnoTrA,3096
|
64
|
+
chunkr_ai/types/segment_processing.py,sha256=0-b4nSoLeGsMKSVw5LPQFXnn-PoVvIJ0wFfSFEOTpsw,12115
|
65
|
+
chunkr_ai/types/segment_processing_param.py,sha256=fVbvFSzmxLPiQoPniFwqqXlbo6fRaZwzZ_TbnwYVOss,12245
|
66
|
+
chunkr_ai/types/task_extract_updated_webhook_event.py,sha256=YYHDQEs4wg2bDgGXgHUgX_CwSLFxePJZrT5OV4J6Mhk,640
|
67
|
+
chunkr_ai/types/task_get_params.py,sha256=yGMHRfkbLzQpRLdF_Dj-8TqcioEhDNWyVbEt50xDAP0,542
|
68
|
+
chunkr_ai/types/task_list_params.py,sha256=NySdOH1mIhZAJvcHr9xm2PeODsCO05lJMsrAiGGBKNE,1275
|
69
|
+
chunkr_ai/types/task_parse_updated_webhook_event.py,sha256=3NsfEpJr_bfFB3Y66elraSxk0FS76c60BLUmhqmU9Vc,636
|
70
|
+
chunkr_ai/types/task_response.py,sha256=I53d8JdZxbg3p-AUnigISmwFFt5DILnm0gyOc2wRu28,2191
|
71
|
+
chunkr_ai/types/unwrap_webhook_event.py,sha256=G23CLp0__AMlfM2xE11ugnDxN82uiG0Xru0p-pI9VHQ,442
|
72
|
+
chunkr_ai/types/version_info.py,sha256=1qYIitGOB7aeOI7gWFfX6cAp2yw5pMzARiTtNl5NNDc,902
|
73
|
+
chunkr_ai/types/webhook_url_response.py,sha256=q7VsWGOLqVfA_ctdcrbynQJVbfCGh1rHlXZsDc-9Sus,205
|
74
|
+
chunkr_ai/types/tasks/__init__.py,sha256=AEF_lM5YdEvz8_7fcX0HHnVvsXdC8Hcsb2Cs-LzRBK4,711
|
75
|
+
chunkr_ai/types/tasks/extract_create_params.py,sha256=IV5TrFqJAGFf4w_uH3hqWlbEySlAOC_2QzwKZ-3oM6o,1376
|
76
|
+
chunkr_ai/types/tasks/extract_create_response.py,sha256=qns3Mk1baC-baI-7CKWZEr502m_Yl3O-Mkx_Cef-cB0,7084
|
77
|
+
chunkr_ai/types/tasks/extract_get_params.py,sha256=8GYboFrcYbmUy9ww5Ju9LEgMYAPe_acHD9tsKzz3QSI,548
|
78
|
+
chunkr_ai/types/tasks/extract_get_response.py,sha256=VbXZv4ntPtnePfYrrN_ClO9zZfWotujaTdAIfD5HZ50,7078
|
79
|
+
chunkr_ai/types/tasks/parse_create_params.py,sha256=xzWA5UX183-Lk-JDtWoV37-4pXpFGmQmS4DwSa7K8Ug,3097
|
80
|
+
chunkr_ai/types/tasks/parse_create_response.py,sha256=asqeI2l6QbdtPhaQkxkbpSwVLe2HEFfeTPG5OX_xfus,1679
|
81
|
+
chunkr_ai/types/tasks/parse_get_params.py,sha256=_lw6uWESTmUb9JzkmnUSJFvPmkxAu-m4Br-_rcrCFr8,544
|
82
|
+
chunkr_ai/types/tasks/parse_get_response.py,sha256=-0_j1_5skabmAtmcK882jZGroVsBRxC_o5d6pg31bJY,1673
|
83
|
+
chunkr_ai-0.1.0a7.dist-info/METADATA,sha256=rGeW9jsvpCgq_oZYmSuaxcL4cEclgWdGhqf6RecZnxA,16492
|
84
|
+
chunkr_ai-0.1.0a7.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
85
|
+
chunkr_ai-0.1.0a7.dist-info/licenses/LICENSE,sha256=3FDRL-L-DFkrFy8yJpb1Nxhuztm0PB2kawcCgK5utFg,11336
|
86
|
+
chunkr_ai-0.1.0a7.dist-info/RECORD,,
|