mixpeek 0.6.2__py3-none-any.whl → 0.6.6__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.
- mixpeek/__init__.py +12 -8
- mixpeek/base_client.py +857 -23
- mixpeek/client.py +7 -7
- mixpeek/core/client_wrapper.py +1 -1
- mixpeek/{pipelines → pipeline}/client.py +26 -20
- mixpeek/storage/__init__.py +3 -0
- mixpeek/storage/client.py +7 -112
- mixpeek/{embed → storage/sample}/client.py +61 -129
- mixpeek/types/__init__.py +8 -0
- mixpeek/types/configs_response.py +14 -3
- mixpeek/types/destination.py +14 -3
- mixpeek/types/embedding_response.py +6 -2
- mixpeek/types/extract_response.py +35 -0
- mixpeek/types/generation_response.py +6 -4
- mixpeek/types/message.py +9 -2
- mixpeek/types/metadata.py +0 -2
- mixpeek/types/modality.py +1 -1
- mixpeek/types/model.py +9 -2
- mixpeek/types/pipeline_response.py +49 -0
- mixpeek/types/pipeline_task_response.py +32 -0
- mixpeek/types/source.py +14 -3
- mixpeek/types/source_destination_mapping.py +14 -3
- mixpeek/types/workflow_code_response.py +29 -0
- mixpeek/{users → user}/client.py +10 -10
- mixpeek/{workflows → workflow}/client.py +14 -15
- {mixpeek-0.6.2.dist-info → mixpeek-0.6.6.dist-info}/METADATA +1 -1
- {mixpeek-0.6.2.dist-info → mixpeek-0.6.6.dist-info}/RECORD +33 -36
- mixpeek/extract/client.py +0 -347
- mixpeek/generators/client.py +0 -237
- mixpeek/parse/client.py +0 -111
- mixpeek/parse_client.py +0 -14
- mixpeek/pipelines/__init__.py +0 -2
- mixpeek/users/__init__.py +0 -2
- mixpeek/workflows/__init__.py +0 -2
- /mixpeek/{embed → pipeline}/__init__.py +0 -0
- /mixpeek/{extract → storage/sample}/__init__.py +0 -0
- /mixpeek/{generators → user}/__init__.py +0 -0
- /mixpeek/{parse → workflow}/__init__.py +0 -0
- {mixpeek-0.6.2.dist-info → mixpeek-0.6.6.dist-info}/LICENSE +0 -0
- {mixpeek-0.6.2.dist-info → mixpeek-0.6.6.dist-info}/WHEEL +0 -0
mixpeek/__init__.py
CHANGED
@@ -11,6 +11,7 @@ from .types import (
|
|
11
11
|
EmbeddingResponse,
|
12
12
|
ErrorMessage,
|
13
13
|
ErrorResponse,
|
14
|
+
ExtractResponse,
|
14
15
|
FieldType,
|
15
16
|
GenerationResponse,
|
16
17
|
HtmlParams,
|
@@ -22,6 +23,8 @@ from .types import (
|
|
22
23
|
Model,
|
23
24
|
Models,
|
24
25
|
PdfParams,
|
26
|
+
PipelineResponse,
|
27
|
+
PipelineTaskResponse,
|
25
28
|
PptParams,
|
26
29
|
PptxParams,
|
27
30
|
Settings,
|
@@ -32,6 +35,7 @@ from .types import (
|
|
32
35
|
ValidationError,
|
33
36
|
ValidationErrorLocItem,
|
34
37
|
VideoParams,
|
38
|
+
WorkflowCodeResponse,
|
35
39
|
WorkflowResponse,
|
36
40
|
WorkflowSettings,
|
37
41
|
XlsxParams,
|
@@ -44,7 +48,7 @@ from .errors import (
|
|
44
48
|
UnauthorizedError,
|
45
49
|
UnprocessableEntityError,
|
46
50
|
)
|
47
|
-
from . import
|
51
|
+
from . import pipeline, storage, user, workflow
|
48
52
|
from .environment import MixpeekEnvironment
|
49
53
|
from .version import __version__
|
50
54
|
|
@@ -60,6 +64,7 @@ __all__ = [
|
|
60
64
|
"EmbeddingResponse",
|
61
65
|
"ErrorMessage",
|
62
66
|
"ErrorResponse",
|
67
|
+
"ExtractResponse",
|
63
68
|
"FieldType",
|
64
69
|
"ForbiddenError",
|
65
70
|
"GenerationResponse",
|
@@ -75,6 +80,8 @@ __all__ = [
|
|
75
80
|
"Models",
|
76
81
|
"NotFoundError",
|
77
82
|
"PdfParams",
|
83
|
+
"PipelineResponse",
|
84
|
+
"PipelineTaskResponse",
|
78
85
|
"PptParams",
|
79
86
|
"PptxParams",
|
80
87
|
"Settings",
|
@@ -87,16 +94,13 @@ __all__ = [
|
|
87
94
|
"ValidationError",
|
88
95
|
"ValidationErrorLocItem",
|
89
96
|
"VideoParams",
|
97
|
+
"WorkflowCodeResponse",
|
90
98
|
"WorkflowResponse",
|
91
99
|
"WorkflowSettings",
|
92
100
|
"XlsxParams",
|
93
101
|
"__version__",
|
94
|
-
"
|
95
|
-
"extract",
|
96
|
-
"generators",
|
97
|
-
"parse",
|
98
|
-
"pipelines",
|
102
|
+
"pipeline",
|
99
103
|
"storage",
|
100
|
-
"
|
101
|
-
"
|
104
|
+
"user",
|
105
|
+
"workflow",
|
102
106
|
]
|