chunkr-ai 0.1.0a1__py3-none-any.whl → 0.1.0a2__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/_client.py +2 -1
- chunkr_ai/_version.py +1 -1
- chunkr_ai/resources/task/__init__.py +33 -0
- chunkr_ai/resources/{task.py → task/parse.py} +146 -696
- chunkr_ai/resources/task/task.py +664 -0
- chunkr_ai/types/__init__.py +0 -19
- chunkr_ai/types/task/__init__.py +7 -0
- chunkr_ai/types/task/parse_create_params.py +806 -0
- chunkr_ai/types/task/parse_update_params.py +806 -0
- chunkr_ai/types/task/task.py +1186 -0
- {chunkr_ai-0.1.0a1.dist-info → chunkr_ai-0.1.0a2.dist-info}/METADATA +12 -12
- {chunkr_ai-0.1.0a1.dist-info → chunkr_ai-0.1.0a2.dist-info}/RECORD +14 -28
- chunkr_ai/types/auto_generation_config.py +0 -39
- chunkr_ai/types/auto_generation_config_param.py +0 -39
- chunkr_ai/types/bounding_box.py +0 -19
- chunkr_ai/types/chunk_processing.py +0 -40
- chunkr_ai/types/chunk_processing_param.py +0 -42
- chunkr_ai/types/ignore_generation_config.py +0 -39
- chunkr_ai/types/ignore_generation_config_param.py +0 -39
- chunkr_ai/types/llm_generation_config.py +0 -39
- chunkr_ai/types/llm_generation_config_param.py +0 -39
- chunkr_ai/types/llm_processing.py +0 -36
- chunkr_ai/types/llm_processing_param.py +0 -36
- chunkr_ai/types/picture_generation_config.py +0 -39
- chunkr_ai/types/picture_generation_config_param.py +0 -39
- chunkr_ai/types/segment_processing.py +0 -280
- chunkr_ai/types/segment_processing_param.py +0 -281
- chunkr_ai/types/table_generation_config.py +0 -39
- chunkr_ai/types/table_generation_config_param.py +0 -39
- chunkr_ai/types/task.py +0 -379
- chunkr_ai/types/task_parse_params.py +0 -90
- chunkr_ai/types/task_update_params.py +0 -90
- {chunkr_ai-0.1.0a1.dist-info → chunkr_ai-0.1.0a2.dist-info}/WHEEL +0 -0
- {chunkr_ai-0.1.0a1.dist-info → chunkr_ai-0.1.0a2.dist-info}/licenses/LICENSE +0 -0
chunkr_ai/_client.py
CHANGED
@@ -21,7 +21,7 @@ from ._types import (
|
|
21
21
|
)
|
22
22
|
from ._utils import is_given, get_async_library
|
23
23
|
from ._version import __version__
|
24
|
-
from .resources import
|
24
|
+
from .resources import health
|
25
25
|
from ._streaming import Stream as Stream, AsyncStream as AsyncStream
|
26
26
|
from ._exceptions import ChunkrError, APIStatusError
|
27
27
|
from ._base_client import (
|
@@ -29,6 +29,7 @@ from ._base_client import (
|
|
29
29
|
SyncAPIClient,
|
30
30
|
AsyncAPIClient,
|
31
31
|
)
|
32
|
+
from .resources.task import task
|
32
33
|
|
33
34
|
__all__ = ["Timeout", "Transport", "ProxiesTypes", "RequestOptions", "Chunkr", "AsyncChunkr", "Client", "AsyncClient"]
|
34
35
|
|
chunkr_ai/_version.py
CHANGED
@@ -0,0 +1,33 @@
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
+
|
3
|
+
from .task import (
|
4
|
+
TaskResource,
|
5
|
+
AsyncTaskResource,
|
6
|
+
TaskResourceWithRawResponse,
|
7
|
+
AsyncTaskResourceWithRawResponse,
|
8
|
+
TaskResourceWithStreamingResponse,
|
9
|
+
AsyncTaskResourceWithStreamingResponse,
|
10
|
+
)
|
11
|
+
from .parse import (
|
12
|
+
ParseResource,
|
13
|
+
AsyncParseResource,
|
14
|
+
ParseResourceWithRawResponse,
|
15
|
+
AsyncParseResourceWithRawResponse,
|
16
|
+
ParseResourceWithStreamingResponse,
|
17
|
+
AsyncParseResourceWithStreamingResponse,
|
18
|
+
)
|
19
|
+
|
20
|
+
__all__ = [
|
21
|
+
"ParseResource",
|
22
|
+
"AsyncParseResource",
|
23
|
+
"ParseResourceWithRawResponse",
|
24
|
+
"AsyncParseResourceWithRawResponse",
|
25
|
+
"ParseResourceWithStreamingResponse",
|
26
|
+
"AsyncParseResourceWithStreamingResponse",
|
27
|
+
"TaskResource",
|
28
|
+
"AsyncTaskResource",
|
29
|
+
"TaskResourceWithRawResponse",
|
30
|
+
"AsyncTaskResourceWithRawResponse",
|
31
|
+
"TaskResourceWithStreamingResponse",
|
32
|
+
"AsyncTaskResourceWithStreamingResponse",
|
33
|
+
]
|