chunkr-ai 0.1.0a6__py3-none-any.whl → 0.1.0a8__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.
Files changed (69) hide show
  1. chunkr_ai/__init__.py +2 -0
  2. chunkr_ai/_base_client.py +3 -3
  3. chunkr_ai/_client.py +31 -3
  4. chunkr_ai/_compat.py +48 -48
  5. chunkr_ai/_constants.py +5 -5
  6. chunkr_ai/_exceptions.py +4 -0
  7. chunkr_ai/_models.py +41 -41
  8. chunkr_ai/_types.py +35 -1
  9. chunkr_ai/_utils/__init__.py +9 -2
  10. chunkr_ai/_utils/_compat.py +45 -0
  11. chunkr_ai/_utils/_datetime_parse.py +136 -0
  12. chunkr_ai/_utils/_transform.py +11 -1
  13. chunkr_ai/_utils/_typing.py +6 -1
  14. chunkr_ai/_utils/_utils.py +0 -1
  15. chunkr_ai/_version.py +1 -1
  16. chunkr_ai/resources/__init__.py +14 -0
  17. chunkr_ai/resources/files.py +3 -3
  18. chunkr_ai/resources/tasks/__init__.py +14 -0
  19. chunkr_ai/resources/tasks/extract.py +393 -0
  20. chunkr_ai/resources/tasks/parse.py +110 -286
  21. chunkr_ai/resources/tasks/tasks.py +64 -32
  22. chunkr_ai/resources/webhooks.py +193 -0
  23. chunkr_ai/types/__init__.py +27 -1
  24. chunkr_ai/types/bounding_box.py +19 -0
  25. chunkr_ai/types/cell.py +39 -0
  26. chunkr_ai/types/cell_style.py +28 -0
  27. chunkr_ai/types/chunk.py +40 -0
  28. chunkr_ai/types/chunk_processing.py +40 -0
  29. chunkr_ai/types/chunk_processing_param.py +42 -0
  30. chunkr_ai/types/extract_configuration.py +24 -0
  31. chunkr_ai/types/extract_output_response.py +62 -0
  32. chunkr_ai/types/file_create_params.py +2 -1
  33. chunkr_ai/types/file_info.py +21 -0
  34. chunkr_ai/types/generation_config.py +29 -0
  35. chunkr_ai/types/generation_config_param.py +29 -0
  36. chunkr_ai/types/llm_processing.py +36 -0
  37. chunkr_ai/types/llm_processing_param.py +36 -0
  38. chunkr_ai/types/ocr_result.py +28 -0
  39. chunkr_ai/types/page.py +27 -0
  40. chunkr_ai/types/parse_configuration.py +64 -0
  41. chunkr_ai/types/parse_configuration_param.py +65 -0
  42. chunkr_ai/types/parse_output_response.py +29 -0
  43. chunkr_ai/types/segment.py +109 -0
  44. chunkr_ai/types/segment_processing.py +228 -0
  45. chunkr_ai/types/segment_processing_param.py +229 -0
  46. chunkr_ai/types/task_extract_updated_webhook_event.py +22 -0
  47. chunkr_ai/types/task_get_params.py +0 -3
  48. chunkr_ai/types/task_list_params.py +7 -1
  49. chunkr_ai/types/task_parse_updated_webhook_event.py +22 -0
  50. chunkr_ai/types/task_response.py +68 -0
  51. chunkr_ai/types/tasks/__init__.py +7 -1
  52. chunkr_ai/types/tasks/extract_create_params.py +47 -0
  53. chunkr_ai/types/tasks/extract_create_response.py +67 -0
  54. chunkr_ai/types/tasks/extract_get_params.py +18 -0
  55. chunkr_ai/types/tasks/extract_get_response.py +67 -0
  56. chunkr_ai/types/tasks/parse_create_params.py +25 -793
  57. chunkr_ai/types/tasks/parse_create_response.py +55 -0
  58. chunkr_ai/types/tasks/parse_get_params.py +18 -0
  59. chunkr_ai/types/tasks/parse_get_response.py +55 -0
  60. chunkr_ai/types/unwrap_webhook_event.py +11 -0
  61. chunkr_ai/types/version_info.py +31 -0
  62. chunkr_ai/types/webhook_url_response.py +9 -0
  63. {chunkr_ai-0.1.0a6.dist-info → chunkr_ai-0.1.0a8.dist-info}/METADATA +14 -13
  64. chunkr_ai-0.1.0a8.dist-info/RECORD +88 -0
  65. chunkr_ai/types/task.py +0 -1225
  66. chunkr_ai/types/tasks/parse_update_params.py +0 -845
  67. chunkr_ai-0.1.0a6.dist-info/RECORD +0 -52
  68. {chunkr_ai-0.1.0a6.dist-info → chunkr_ai-0.1.0a8.dist-info}/WHEEL +0 -0
  69. {chunkr_ai-0.1.0a6.dist-info → chunkr_ai-0.1.0a8.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,18 @@
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"""
@@ -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."""
@@ -0,0 +1,9 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from .._models import BaseModel
4
+
5
+ __all__ = ["WebhookURLResponse"]
6
+
7
+
8
+ class WebhookURLResponse(BaseModel):
9
+ url: str
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: chunkr-ai
3
- Version: 0.1.0a6
3
+ Version: 0.1.0a8
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
- task = client.tasks.parse.create(
75
+ parse = client.tasks.parse.create(
74
76
  file="string",
75
77
  )
76
- print(task.task_id)
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
- task = await client.tasks.parse.create(
101
+ parse = await client.tasks.parse.create(
100
102
  file="string",
101
103
  )
102
- print(task.task_id)
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
- task = await client.tasks.parse.create(
136
+ parse = await client.tasks.parse.create(
135
137
  file="string",
136
138
  )
137
- print(task.task_id)
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
- task = client.tasks.parse.create(
234
+ parse = client.tasks.parse.create(
233
235
  file="file",
234
236
  chunk_processing={},
235
237
  )
236
- print(task.chunk_processing)
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 50 times by default, with a short exponential backoff.
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 30 seconds. You can configure this with a `timeout` option,
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 30 seconds)
334
+ # 20 seconds (default is 1 minute)
334
335
  timeout=20.0,
335
336
  )
336
337
 
@@ -0,0 +1,88 @@
1
+ chunkr_ai/__init__.py,sha256=631z4iVHDBnkIeka-8y0rEwLNmqkoW1XvQZHyrVBvBE,2651
2
+ chunkr_ai/_base_client.py,sha256=hxuEQSu9m5vbAq8loJr1queokXBEP7ZVqUbcxBky_l8,67050
3
+ chunkr_ai/_client.py,sha256=mrlnWoHnQ8A8N1KZfjXlql9ZHT3CU0Y6W3tqhAVETBQ,17329
4
+ chunkr_ai/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
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=c29x_mRccdxlGwdUPfSR5eJxGXe74Ea5Dje5igZTrKQ,30024
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=ro35qkMbYwtsXUVVSgpp_DD2Z9wr0n3IGJGgSLRPQo4,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=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
18
+ chunkr_ai/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
19
+ chunkr_ai/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
20
+ chunkr_ai/_utils/_logs.py,sha256=ylZvP2JTPNlFCbxYajpsnWkA253kDFgnFYDWWuvgf_Q,780
21
+ chunkr_ai/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
22
+ chunkr_ai/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
23
+ chunkr_ai/_utils/_resources_proxy.py,sha256=3KbSCApjaz7x_frFAxJe9ltY-dIJBQUVnIhR2GvVRY8,604
24
+ chunkr_ai/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
25
+ chunkr_ai/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
26
+ chunkr_ai/_utils/_transform.py,sha256=i_U4R82RtQJtKKCriwFqmfcWjtwmmsiiF1AEXKQ_OPo,15957
27
+ chunkr_ai/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
28
+ chunkr_ai/_utils/_utils.py,sha256=D2QE7mVPNEJzaB50u8rvDQAUDS5jx7JoeFD7zdj-TeI,12231
29
+ chunkr_ai/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
30
+ chunkr_ai/resources/__init__.py,sha256=AbJ_7zmjJI5AxDXvFbXeQU_4jugnj7MRw7A20op2i1c,1902
31
+ chunkr_ai/resources/files.py,sha256=QyM6_z4rc1ySpgHjTKH-opqge5Jx6IxwwPnjrFcXEVg,27260
32
+ chunkr_ai/resources/health.py,sha256=XTvUtRs5hEK-uccb_40mcIex85eEUo1a171nQUjpSOs,4965
33
+ chunkr_ai/resources/webhooks.py,sha256=gOzCqEhrTdTUSNXX6hqWb9Dcj3yug_9OANIID7cQGM4,7006
34
+ chunkr_ai/resources/tasks/__init__.py,sha256=wDCnwtnpTfiaLg7NBxoLZYh2TtOw44_DSqtJa_TjmXU,1439
35
+ chunkr_ai/resources/tasks/extract.py,sha256=KXOxNvKETZ6it7IdcJWibZ3y4gajMqmoSoI3u_MAV2I,15076
36
+ chunkr_ai/resources/tasks/parse.py,sha256=LzblVQkrf-qMoGAl4wkfX5MkxjfHUjXh-TLUGCxP9t4,19560
37
+ chunkr_ai/resources/tasks/tasks.py,sha256=FlbI1ErMMd0rTiimliNcQ21_TZA7ZFxx4Bir5eDOpo8,23768
38
+ chunkr_ai/types/__init__.py,sha256=vBUEzAt6cblUc44h8NivvVrua_CmaIujTvjvf8B0_S0,2499
39
+ chunkr_ai/types/bounding_box.py,sha256=JDZlhJJl4lg6RYGf8VpC46soQfQ10-K8YwHHA6XBFkM,431
40
+ chunkr_ai/types/cell.py,sha256=D-S_XAzmOJs0Lo2RgY7T3h_ChdhSrRrI8IN4qo2sGOU,1143
41
+ chunkr_ai/types/cell_style.py,sha256=VqSz6pZ7rjmHYrq_S63IOFPaWvXjWhNUIGc3V4UlF6U,873
42
+ chunkr_ai/types/chunk.py,sha256=GTDTWZswdik-DYxm6-wHsBTYvHS_4F2peX5-YF6PXRg,1117
43
+ chunkr_ai/types/chunk_processing.py,sha256=1yV2A52MGNqs_F_RLMCzBuKqFRrtTzaM0tGh-L2u4sI,1197
44
+ chunkr_ai/types/chunk_processing_param.py,sha256=MBl42a2r5xczGe5ST2IJQB1a4DjAajw4ZQMTxzDC4A8,1294
45
+ chunkr_ai/types/delete.py,sha256=EU78fjXpc8-fqvgcFTuJ0ejs5u_UjbhOz5frkeUHvxY,225
46
+ chunkr_ai/types/extract_configuration.py,sha256=OCs3SnuS8qXWB926o8Gv1Y2AuNszplGmPHBT9-iMR3g,691
47
+ chunkr_ai/types/extract_output_response.py,sha256=kfkHbeEVl3x3t-7u4h4Cd4wC5KbrOjz4-joP5RV1WyA,1272
48
+ chunkr_ai/types/file.py,sha256=kOxR0g-3A-qOxz2cjuTcq0wFMqPoph9uQuLYQ56zb-c,718
49
+ chunkr_ai/types/file_create_params.py,sha256=_1Dr3FlO9BOv6gzhCN4g46_otCBqEdLe0mnxpdaRPaE,468
50
+ chunkr_ai/types/file_info.py,sha256=78r0AITTY2nlZyW9pHy7dywVXyOsCK1Ysmmc-wfQBVM,499
51
+ chunkr_ai/types/file_list_params.py,sha256=oJGTf88aAxBhNfmQDbxGT63b95HdSbMXUubKjXM22_U,822
52
+ chunkr_ai/types/file_url.py,sha256=L434WnOXkNmt59dJiaAgT1_3pN3BIsxm2q14zHQK6xY,365
53
+ chunkr_ai/types/file_url_params.py,sha256=ZHfKiy_6B25StdDemulavGcsPggNNMKLWf6KN7xfPTY,413
54
+ chunkr_ai/types/files_list_response.py,sha256=ggSRWhTzZWjcDXxStyCzrYICXXB5TqnL2j-SN9mHH_g,506
55
+ chunkr_ai/types/generation_config.py,sha256=9gfwdd228x29jC1egxq3IreKwgkGZCjSWHCXIkzQwqE,958
56
+ chunkr_ai/types/generation_config_param.py,sha256=9E0Mhee-NInwOzjXmq3gpd8G5drsPBpzFs0AA2ywTc0,960
57
+ chunkr_ai/types/health_check_response.py,sha256=6Zn5YYHCQf2RgMjDlf39mtiTPqfaBfC9Vv599U_rKCI,200
58
+ chunkr_ai/types/llm_processing.py,sha256=cTm5LBBCpnmA4u-nGQdO67JYCTizzf4lJAvUsG6BX2Q,1095
59
+ chunkr_ai/types/llm_processing_param.py,sha256=CSnW4-5-32Pzoo-G7G3p_NUvljtCkNguj1dHVc2Y4cA,1135
60
+ chunkr_ai/types/ocr_result.py,sha256=EdIvpuccQ_8A8ml7yVCOEOfBoewgwTBzVJZ_les9udM,740
61
+ chunkr_ai/types/page.py,sha256=ADdGJisS-GxBD_wdu3q1pmikgJ7twFsP0choDEXw9ro,690
62
+ chunkr_ai/types/parse_configuration.py,sha256=MOTypSv3kiwoLEcjAgsyc674CMG4xw6SxXEXweFU6V4,2567
63
+ chunkr_ai/types/parse_configuration_param.py,sha256=hJWngWEtT3RYgHqkAvmS4RG7cODla6i-Cp8ubtZfmz0,2544
64
+ chunkr_ai/types/parse_output_response.py,sha256=KfRFY5PnchJfEWr4jy3Dd-3AWeImGE5BP_NMFC5I6_c,947
65
+ chunkr_ai/types/segment.py,sha256=_QNYmAMSZOCNv67CwsmIOq7X0ZeYsj6jzQbKhbnoTrA,3096
66
+ chunkr_ai/types/segment_processing.py,sha256=0-b4nSoLeGsMKSVw5LPQFXnn-PoVvIJ0wFfSFEOTpsw,12115
67
+ chunkr_ai/types/segment_processing_param.py,sha256=fVbvFSzmxLPiQoPniFwqqXlbo6fRaZwzZ_TbnwYVOss,12245
68
+ chunkr_ai/types/task_extract_updated_webhook_event.py,sha256=YYHDQEs4wg2bDgGXgHUgX_CwSLFxePJZrT5OV4J6Mhk,640
69
+ chunkr_ai/types/task_get_params.py,sha256=Nx2luhebcoaiuRln4KP4FarWvBPd1OYi__efi56zHPM,460
70
+ chunkr_ai/types/task_list_params.py,sha256=NySdOH1mIhZAJvcHr9xm2PeODsCO05lJMsrAiGGBKNE,1275
71
+ chunkr_ai/types/task_parse_updated_webhook_event.py,sha256=3NsfEpJr_bfFB3Y66elraSxk0FS76c60BLUmhqmU9Vc,636
72
+ chunkr_ai/types/task_response.py,sha256=I53d8JdZxbg3p-AUnigISmwFFt5DILnm0gyOc2wRu28,2191
73
+ chunkr_ai/types/unwrap_webhook_event.py,sha256=G23CLp0__AMlfM2xE11ugnDxN82uiG0Xru0p-pI9VHQ,442
74
+ chunkr_ai/types/version_info.py,sha256=1qYIitGOB7aeOI7gWFfX6cAp2yw5pMzARiTtNl5NNDc,902
75
+ chunkr_ai/types/webhook_url_response.py,sha256=q7VsWGOLqVfA_ctdcrbynQJVbfCGh1rHlXZsDc-9Sus,205
76
+ chunkr_ai/types/tasks/__init__.py,sha256=AEF_lM5YdEvz8_7fcX0HHnVvsXdC8Hcsb2Cs-LzRBK4,711
77
+ chunkr_ai/types/tasks/extract_create_params.py,sha256=IV5TrFqJAGFf4w_uH3hqWlbEySlAOC_2QzwKZ-3oM6o,1376
78
+ chunkr_ai/types/tasks/extract_create_response.py,sha256=Umbm40i0Q6Oz3vX9WwTeOXwKU2g8ddZmFhRwl-5Rm5U,2147
79
+ chunkr_ai/types/tasks/extract_get_params.py,sha256=AsJvXHvdDnIcVOvTK9gCeiMFk4wckuv19IXIJcqpqso,466
80
+ chunkr_ai/types/tasks/extract_get_response.py,sha256=FWXfS3Qobg3k6seWbbXJZ5y4N_mtJbHsN_FeZV5_ieM,2141
81
+ chunkr_ai/types/tasks/parse_create_params.py,sha256=xzWA5UX183-Lk-JDtWoV37-4pXpFGmQmS4DwSa7K8Ug,3097
82
+ chunkr_ai/types/tasks/parse_create_response.py,sha256=asqeI2l6QbdtPhaQkxkbpSwVLe2HEFfeTPG5OX_xfus,1679
83
+ chunkr_ai/types/tasks/parse_get_params.py,sha256=Ca0C91k6ajNTMhtUkFMulgC6g8_wI7YLVGxsWiupiVA,462
84
+ chunkr_ai/types/tasks/parse_get_response.py,sha256=-0_j1_5skabmAtmcK882jZGroVsBRxC_o5d6pg31bJY,1673
85
+ chunkr_ai-0.1.0a8.dist-info/METADATA,sha256=4ZJe_KJ5v3nHZPZ298yQwfherx3nMr0iXu_1SIroOkE,16492
86
+ chunkr_ai-0.1.0a8.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
87
+ chunkr_ai-0.1.0a8.dist-info/licenses/LICENSE,sha256=3FDRL-L-DFkrFy8yJpb1Nxhuztm0PB2kawcCgK5utFg,11336
88
+ chunkr_ai-0.1.0a8.dist-info/RECORD,,