mixpeek 0.6.6__py3-none-any.whl → 0.6.8__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/base_client.py +89 -63
- mixpeek/core/__init__.py +2 -0
- mixpeek/core/client_wrapper.py +1 -1
- mixpeek/core/jsonable_encoder.py +5 -9
- mixpeek/core/pydantic_utilities.py +12 -0
- mixpeek/pipeline/client.py +55 -47
- mixpeek/storage/client.py +19 -19
- mixpeek/storage/sample/client.py +37 -33
- mixpeek/types/api_key.py +3 -7
- mixpeek/types/audio_params.py +3 -7
- mixpeek/types/configs_response.py +6 -10
- mixpeek/types/connection.py +3 -7
- mixpeek/types/csv_params.py +3 -7
- mixpeek/types/destination.py +6 -10
- mixpeek/types/embedding_response.py +4 -8
- mixpeek/types/error_message.py +3 -7
- mixpeek/types/error_response.py +3 -7
- mixpeek/types/extract_response.py +4 -8
- mixpeek/types/generation_response.py +4 -8
- mixpeek/types/html_params.py +3 -7
- mixpeek/types/http_validation_error.py +3 -7
- mixpeek/types/image_params.py +4 -8
- mixpeek/types/message.py +5 -9
- mixpeek/types/metadata.py +3 -7
- mixpeek/types/model.py +5 -9
- mixpeek/types/pdf_params.py +4 -8
- mixpeek/types/pipeline_response.py +6 -10
- mixpeek/types/pipeline_task_response.py +4 -8
- mixpeek/types/ppt_params.py +3 -7
- mixpeek/types/pptx_params.py +3 -7
- mixpeek/types/settings.py +3 -7
- mixpeek/types/source.py +6 -10
- mixpeek/types/source_destination_mapping.py +6 -10
- mixpeek/types/txt_params.py +3 -7
- mixpeek/types/user.py +3 -7
- mixpeek/types/validation_error.py +3 -7
- mixpeek/types/video_params.py +3 -7
- mixpeek/types/workflow_code_response.py +3 -7
- mixpeek/types/workflow_response.py +3 -7
- mixpeek/types/workflow_settings.py +3 -7
- mixpeek/types/xlsx_params.py +3 -7
- mixpeek/user/client.py +37 -33
- mixpeek/workflow/client.py +55 -47
- {mixpeek-0.6.6.dist-info → mixpeek-0.6.8.dist-info}/METADATA +1 -1
- mixpeek-0.6.8.dist-info/RECORD +76 -0
- mixpeek-0.6.6.dist-info/RECORD +0 -75
- {mixpeek-0.6.6.dist-info → mixpeek-0.6.8.dist-info}/LICENSE +0 -0
- {mixpeek-0.6.6.dist-info → mixpeek-0.6.8.dist-info}/WHEEL +0 -0
mixpeek/workflow/client.py
CHANGED
@@ -8,6 +8,7 @@ from json.decoder import JSONDecodeError
|
|
8
8
|
from ..core.api_error import ApiError
|
9
9
|
from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
|
10
10
|
from ..core.jsonable_encoder import jsonable_encoder
|
11
|
+
from ..core.pydantic_utilities import pydantic_v1
|
11
12
|
from ..core.remove_none_from_dict import remove_none_from_dict
|
12
13
|
from ..core.request_options import RequestOptions
|
13
14
|
from ..errors.bad_request_error import BadRequestError
|
@@ -22,11 +23,6 @@ from ..types.workflow_code_response import WorkflowCodeResponse
|
|
22
23
|
from ..types.workflow_response import WorkflowResponse
|
23
24
|
from ..types.workflow_settings import WorkflowSettings
|
24
25
|
|
25
|
-
try:
|
26
|
-
import pydantic.v1 as pydantic # type: ignore
|
27
|
-
except ImportError:
|
28
|
-
import pydantic # type: ignore
|
29
|
-
|
30
26
|
# this is used as the default value for optional parameters
|
31
27
|
OMIT = typing.cast(typing.Any, ...)
|
32
28
|
|
@@ -116,19 +112,21 @@ class WorkflowClient:
|
|
116
112
|
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
117
113
|
)
|
118
114
|
if 200 <= _response.status_code < 300:
|
119
|
-
return
|
115
|
+
return pydantic_v1.parse_obj_as(WorkflowResponse, _response.json()) # type: ignore
|
120
116
|
if _response.status_code == 400:
|
121
|
-
raise BadRequestError(
|
117
|
+
raise BadRequestError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
122
118
|
if _response.status_code == 401:
|
123
|
-
raise UnauthorizedError(
|
119
|
+
raise UnauthorizedError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
124
120
|
if _response.status_code == 403:
|
125
|
-
raise ForbiddenError(
|
121
|
+
raise ForbiddenError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
126
122
|
if _response.status_code == 404:
|
127
|
-
raise NotFoundError(
|
123
|
+
raise NotFoundError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
128
124
|
if _response.status_code == 422:
|
129
|
-
raise UnprocessableEntityError(
|
125
|
+
raise UnprocessableEntityError(
|
126
|
+
pydantic_v1.parse_obj_as(HttpValidationError, _response.json()) # type: ignore
|
127
|
+
)
|
130
128
|
if _response.status_code == 500:
|
131
|
-
raise InternalServerError(
|
129
|
+
raise InternalServerError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
132
130
|
try:
|
133
131
|
_response_json = _response.json()
|
134
132
|
except JSONDecodeError:
|
@@ -203,19 +201,21 @@ class WorkflowClient:
|
|
203
201
|
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
204
202
|
)
|
205
203
|
if 200 <= _response.status_code < 300:
|
206
|
-
return
|
204
|
+
return pydantic_v1.parse_obj_as(typing.Any, _response.json()) # type: ignore
|
207
205
|
if _response.status_code == 400:
|
208
|
-
raise BadRequestError(
|
206
|
+
raise BadRequestError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
209
207
|
if _response.status_code == 401:
|
210
|
-
raise UnauthorizedError(
|
208
|
+
raise UnauthorizedError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
211
209
|
if _response.status_code == 403:
|
212
|
-
raise ForbiddenError(
|
210
|
+
raise ForbiddenError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
213
211
|
if _response.status_code == 404:
|
214
|
-
raise NotFoundError(
|
212
|
+
raise NotFoundError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
215
213
|
if _response.status_code == 422:
|
216
|
-
raise UnprocessableEntityError(
|
214
|
+
raise UnprocessableEntityError(
|
215
|
+
pydantic_v1.parse_obj_as(HttpValidationError, _response.json()) # type: ignore
|
216
|
+
)
|
217
217
|
if _response.status_code == 500:
|
218
|
-
raise InternalServerError(
|
218
|
+
raise InternalServerError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
219
219
|
try:
|
220
220
|
_response_json = _response.json()
|
221
221
|
except JSONDecodeError:
|
@@ -262,19 +262,21 @@ class WorkflowClient:
|
|
262
262
|
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
263
263
|
)
|
264
264
|
if 200 <= _response.status_code < 300:
|
265
|
-
return
|
265
|
+
return pydantic_v1.parse_obj_as(WorkflowCodeResponse, _response.json()) # type: ignore
|
266
266
|
if _response.status_code == 400:
|
267
|
-
raise BadRequestError(
|
267
|
+
raise BadRequestError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
268
268
|
if _response.status_code == 401:
|
269
|
-
raise UnauthorizedError(
|
269
|
+
raise UnauthorizedError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
270
270
|
if _response.status_code == 403:
|
271
|
-
raise ForbiddenError(
|
271
|
+
raise ForbiddenError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
272
272
|
if _response.status_code == 404:
|
273
|
-
raise NotFoundError(
|
273
|
+
raise NotFoundError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
274
274
|
if _response.status_code == 422:
|
275
|
-
raise UnprocessableEntityError(
|
275
|
+
raise UnprocessableEntityError(
|
276
|
+
pydantic_v1.parse_obj_as(HttpValidationError, _response.json()) # type: ignore
|
277
|
+
)
|
276
278
|
if _response.status_code == 500:
|
277
|
-
raise InternalServerError(
|
279
|
+
raise InternalServerError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
278
280
|
try:
|
279
281
|
_response_json = _response.json()
|
280
282
|
except JSONDecodeError:
|
@@ -367,19 +369,21 @@ class AsyncWorkflowClient:
|
|
367
369
|
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
368
370
|
)
|
369
371
|
if 200 <= _response.status_code < 300:
|
370
|
-
return
|
372
|
+
return pydantic_v1.parse_obj_as(WorkflowResponse, _response.json()) # type: ignore
|
371
373
|
if _response.status_code == 400:
|
372
|
-
raise BadRequestError(
|
374
|
+
raise BadRequestError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
373
375
|
if _response.status_code == 401:
|
374
|
-
raise UnauthorizedError(
|
376
|
+
raise UnauthorizedError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
375
377
|
if _response.status_code == 403:
|
376
|
-
raise ForbiddenError(
|
378
|
+
raise ForbiddenError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
377
379
|
if _response.status_code == 404:
|
378
|
-
raise NotFoundError(
|
380
|
+
raise NotFoundError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
379
381
|
if _response.status_code == 422:
|
380
|
-
raise UnprocessableEntityError(
|
382
|
+
raise UnprocessableEntityError(
|
383
|
+
pydantic_v1.parse_obj_as(HttpValidationError, _response.json()) # type: ignore
|
384
|
+
)
|
381
385
|
if _response.status_code == 500:
|
382
|
-
raise InternalServerError(
|
386
|
+
raise InternalServerError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
383
387
|
try:
|
384
388
|
_response_json = _response.json()
|
385
389
|
except JSONDecodeError:
|
@@ -454,19 +458,21 @@ class AsyncWorkflowClient:
|
|
454
458
|
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
455
459
|
)
|
456
460
|
if 200 <= _response.status_code < 300:
|
457
|
-
return
|
461
|
+
return pydantic_v1.parse_obj_as(typing.Any, _response.json()) # type: ignore
|
458
462
|
if _response.status_code == 400:
|
459
|
-
raise BadRequestError(
|
463
|
+
raise BadRequestError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
460
464
|
if _response.status_code == 401:
|
461
|
-
raise UnauthorizedError(
|
465
|
+
raise UnauthorizedError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
462
466
|
if _response.status_code == 403:
|
463
|
-
raise ForbiddenError(
|
467
|
+
raise ForbiddenError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
464
468
|
if _response.status_code == 404:
|
465
|
-
raise NotFoundError(
|
469
|
+
raise NotFoundError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
466
470
|
if _response.status_code == 422:
|
467
|
-
raise UnprocessableEntityError(
|
471
|
+
raise UnprocessableEntityError(
|
472
|
+
pydantic_v1.parse_obj_as(HttpValidationError, _response.json()) # type: ignore
|
473
|
+
)
|
468
474
|
if _response.status_code == 500:
|
469
|
-
raise InternalServerError(
|
475
|
+
raise InternalServerError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
470
476
|
try:
|
471
477
|
_response_json = _response.json()
|
472
478
|
except JSONDecodeError:
|
@@ -515,19 +521,21 @@ class AsyncWorkflowClient:
|
|
515
521
|
max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
|
516
522
|
)
|
517
523
|
if 200 <= _response.status_code < 300:
|
518
|
-
return
|
524
|
+
return pydantic_v1.parse_obj_as(WorkflowCodeResponse, _response.json()) # type: ignore
|
519
525
|
if _response.status_code == 400:
|
520
|
-
raise BadRequestError(
|
526
|
+
raise BadRequestError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
521
527
|
if _response.status_code == 401:
|
522
|
-
raise UnauthorizedError(
|
528
|
+
raise UnauthorizedError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
523
529
|
if _response.status_code == 403:
|
524
|
-
raise ForbiddenError(
|
530
|
+
raise ForbiddenError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
525
531
|
if _response.status_code == 404:
|
526
|
-
raise NotFoundError(
|
532
|
+
raise NotFoundError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
527
533
|
if _response.status_code == 422:
|
528
|
-
raise UnprocessableEntityError(
|
534
|
+
raise UnprocessableEntityError(
|
535
|
+
pydantic_v1.parse_obj_as(HttpValidationError, _response.json()) # type: ignore
|
536
|
+
)
|
529
537
|
if _response.status_code == 500:
|
530
|
-
raise InternalServerError(
|
538
|
+
raise InternalServerError(pydantic_v1.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
|
531
539
|
try:
|
532
540
|
_response_json = _response.json()
|
533
541
|
except JSONDecodeError:
|
@@ -0,0 +1,76 @@
|
|
1
|
+
mixpeek/__init__.py,sha256=oC5q6VUOdDubpFT7PRtno7IUyzgiU9uSRyA7f0Ka0eY,2098
|
2
|
+
mixpeek/base_client.py,sha256=1uzdYarkeRqusCBnhAvmN0qPyY69AYcNTbEwTFtQTjI,46069
|
3
|
+
mixpeek/client.py,sha256=ka2f4aHaZwGq5ju3MnDLImlgCjce3BXXl4gw5I9HB90,2047
|
4
|
+
mixpeek/core/__init__.py,sha256=1pNSKkwyQvMl_F0wohBqmoQAITptg3zlvCwsoSSzy7c,853
|
5
|
+
mixpeek/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
6
|
+
mixpeek/core/client_wrapper.py,sha256=vltxwevXl5skyFOuHF0Erpt69gvpSQyWz3D-WfaWd8Q,2622
|
7
|
+
mixpeek/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
8
|
+
mixpeek/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
|
9
|
+
mixpeek/core/http_client.py,sha256=5ok6hqgZDJhg57EHvMnr0BBaHdG50QxFPKaCZ9aVWTc,5059
|
10
|
+
mixpeek/core/jsonable_encoder.py,sha256=L6G68Py6gEo8n87rXwlkLPUyzHvXftEBjJZNb2tCuOA,3742
|
11
|
+
mixpeek/core/pydantic_utilities.py,sha256=eCOGHdLoaxK_6QSFYKdN0LWJo3atTUXT3VPyqJh3rxM,329
|
12
|
+
mixpeek/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
|
13
|
+
mixpeek/core/request_options.py,sha256=-3QoOMMHI2exIyHH6Q2MD7rpo_6w-i6zMAy0nqWTN8c,1420
|
14
|
+
mixpeek/environment.py,sha256=-muYBZQwCYNISO0ic3Kkn_hPqfrB_VpOv_RpBoCKA6Q,156
|
15
|
+
mixpeek/errors/__init__.py,sha256=whc3hN4Au19m_MxwQGjxUEfmSPyHqjmvOS0ESc0S7Qk,534
|
16
|
+
mixpeek/errors/bad_request_error.py,sha256=xHpPeLG8lM_kLR1QpOHI4xOuWVFEOgQfQi37kOcB0wc,285
|
17
|
+
mixpeek/errors/forbidden_error.py,sha256=CYoHSeucV5tjDJUTj19Dp6EoJZBvRswNAT9YhITApfE,284
|
18
|
+
mixpeek/errors/internal_server_error.py,sha256=fMmyOAEwUto7X9Mp65KbL0XkvepZsmT6p1p3hIBEuFg,289
|
19
|
+
mixpeek/errors/not_found_error.py,sha256=y5TwirUAu_TWO2d1Poh2ALf1IHj2v728z6AxrGexSVg,283
|
20
|
+
mixpeek/errors/unauthorized_error.py,sha256=nH-QOnS5KLta5PB4I-UoETY4i_Uz3-mF9xCwScE1JOE,287
|
21
|
+
mixpeek/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
22
|
+
mixpeek/pipeline/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
23
|
+
mixpeek/pipeline/client.py,sha256=HwyadQ5eLOVRElmmVrFJKrnYV54-YFGIkg_6RqyktXA,22854
|
24
|
+
mixpeek/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
|
+
mixpeek/storage/__init__.py,sha256=DXpRqQD-Sr8yiyNQYMJeAq10AQAXryiMx42UW4mDNrk,108
|
26
|
+
mixpeek/storage/client.py,sha256=DpR7n8Z1cgObvPHoU4u3QXQq5FoNRIsTrO8SRLdR9hA,7142
|
27
|
+
mixpeek/storage/sample/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
28
|
+
mixpeek/storage/sample/client.py,sha256=W6SzaOjJZvOqR3E55F2lcwY6MbKp2cDmB_rQVvvjbpQ,13546
|
29
|
+
mixpeek/types/__init__.py,sha256=ap7tSQXWWqyaWSO6dDuCOfsNUPFOj_DsqVaoZ32_Y7U,2371
|
30
|
+
mixpeek/types/api_key.py,sha256=J2aJwDor_EUtxNWdVgmzy-pfzF3RZFgAeGgf7KsHxoc,956
|
31
|
+
mixpeek/types/audio_params.py,sha256=vAjrKV6lAUP9iYu9dOisnoWJvf97NxAJfvsE1TztSKo,882
|
32
|
+
mixpeek/types/configs_response.py,sha256=-BmWVvAdjaU-z-WE9pM7zty-EFVsO5YHJb0p66QWByk,1150
|
33
|
+
mixpeek/types/connection.py,sha256=T-Cch5wwXMSlvE1iOQ5SentCF-YHTfJHVVMv9wIxI5w,1087
|
34
|
+
mixpeek/types/connection_engine.py,sha256=Gy43bjrZTkfiYtQQZGZFvJwHvHS0PxhZCf8l-LRrbRE,168
|
35
|
+
mixpeek/types/csv_params.py,sha256=RU4eESt85wQa3AlxduzgRpIdEhBTsqoJyfyOKXYvUdo,881
|
36
|
+
mixpeek/types/destination.py,sha256=oVvDCphe9XYmJSQFuu6Niu-uARLj7mImlTjvvDUykz0,1065
|
37
|
+
mixpeek/types/embedding_response.py,sha256=7i3pFdYzlxvJpbqL6i7oTPdSbkwRlvRUMjNOK136qPE,1002
|
38
|
+
mixpeek/types/error_message.py,sha256=Hcbf4MoxwBFY09dxU76lj2SeOk0zTHeJzFXAALTeu58,848
|
39
|
+
mixpeek/types/error_response.py,sha256=LG5bbXIGVm-mbFNOxcrr7IFKtruKSqnMJTf3k4YkrJ0,938
|
40
|
+
mixpeek/types/extract_response.py,sha256=Nb08OQLPHdo5XuY55dd-zuUObPKfx73XQdTMIEoIBbw,1039
|
41
|
+
mixpeek/types/field_type.py,sha256=ihpE7AL8NwS8mZ9ItVeK26KBmrIa0tLbCag96Pk4dqE,160
|
42
|
+
mixpeek/types/generation_response.py,sha256=W2JNu7h-6EAacMAslvxKurFZablOe5fc_ysYdU_UTFg,1087
|
43
|
+
mixpeek/types/html_params.py,sha256=aS_7s5aReIdGRW2OtH1QwLSl2WfVUUAx8pGd6EAruPI,892
|
44
|
+
mixpeek/types/http_validation_error.py,sha256=u4t-1U0DI0u3Zj_Oz7AmGmpL4sqBzoS_5nZHImWQbmM,953
|
45
|
+
mixpeek/types/image_params.py,sha256=VSs9K56-RqpySo31mBD1g8qlu5X3ycFPiRsGYkuuiDg,1016
|
46
|
+
mixpeek/types/message.py,sha256=L80CYQdRpL6mYKnPTil3RqstoYBx93bHdrFRrTrPtvA,1006
|
47
|
+
mixpeek/types/metadata.py,sha256=Sq85K-ogh0IBJoYw_wQuSCyW9Wod3ZE1hTB68ZZ1Dwg,990
|
48
|
+
mixpeek/types/modality.py,sha256=HwFmbfcJfBKLYg680oQLkGSiQETfNPqiB-mQO7X8sjA,102
|
49
|
+
mixpeek/types/model.py,sha256=S5pyWqGfH6QuSuTqg7LNx8TNKwBhut5DyD8g1YvTW7I,1025
|
50
|
+
mixpeek/types/models.py,sha256=RnTOybDVTkVIWrZRY18cULyqjGGTWE2ZJuYT0lYv5lo,173
|
51
|
+
mixpeek/types/pdf_params.py,sha256=LbpGJOaJm6131Vsnt0A8xc8TdXds6H-nyyFgKvzwG2c,1592
|
52
|
+
mixpeek/types/pipeline_response.py,sha256=-Zryna055brPZzuUkab3ecMAmJFFl0ZXEkYUGC-BcIs,1529
|
53
|
+
mixpeek/types/pipeline_task_response.py,sha256=tfhh3kuOkl1wIPkJWrWHzsvGZfFT1tpXZQy8EpWA92Q,921
|
54
|
+
mixpeek/types/ppt_params.py,sha256=S_RvJYiz_gCGzlnxoc4x97vtHJ2StuuGS7fXhSKTdpg,831
|
55
|
+
mixpeek/types/pptx_params.py,sha256=E8Bs9_jDspxYEUp_N0iQ-EJIKoDs94mFETIykqKrs-M,832
|
56
|
+
mixpeek/types/settings.py,sha256=6VPG8Wp3rjaE62KLVZhuKXnalPCaNpiCkTp_04UkmG0,1166
|
57
|
+
mixpeek/types/source.py,sha256=ahyV1L6Ipk32-8KvZy3t84BMootEtq7NUGHnpoOw28E,1133
|
58
|
+
mixpeek/types/source_destination_mapping.py,sha256=3yFQ3nLyGEgwysyrTPZXnFqI1FAWmq_zHOfIeFXzwrc,1159
|
59
|
+
mixpeek/types/txt_params.py,sha256=fLfXSSUg591m91VOVqR-s0f3lTLdVTu1vkn3s5VE4WI,831
|
60
|
+
mixpeek/types/user.py,sha256=Rx0FCMZ6nmJmogBgp6TAfonQMWP4nBefMx_NCderzZY,1192
|
61
|
+
mixpeek/types/validation_error.py,sha256=yqombbKLBSzTPFn6CJH_hbo7tpS68T3JvMdd7kBtO1g,972
|
62
|
+
mixpeek/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
63
|
+
mixpeek/types/video_params.py,sha256=LM0h6FTALgUFdP_EE1Bf7BGu2ANNx5L1Rf5ICbdEdqo,833
|
64
|
+
mixpeek/types/workflow_code_response.py,sha256=75UMn_UyHI-5gsO0KjYTySE84Fty-PK0BcNuZ4t3Ols,867
|
65
|
+
mixpeek/types/workflow_response.py,sha256=nsJtUTQUhbd57uYR4M1bMgwpwaCc34_rZgMIPxYJPR8,1002
|
66
|
+
mixpeek/types/workflow_settings.py,sha256=mmQX8BUQrslUunwyd8BXweXGOuVFAgOQ1EyjgKKTY0A,946
|
67
|
+
mixpeek/types/xlsx_params.py,sha256=vFpwbz53b5yf870x8CLxr89BEyq_Jbr9g9f8QJbSgEw,882
|
68
|
+
mixpeek/user/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
69
|
+
mixpeek/user/client.py,sha256=mOjjil-oOTj9l4e63okiCmBEdgCsRWRUgw4mwqj2bII,14926
|
70
|
+
mixpeek/version.py,sha256=DfAuS0W7koTv3v8TZFxY1W5LvfaqOvG96P6Kc5fNnU0,75
|
71
|
+
mixpeek/workflow/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
72
|
+
mixpeek/workflow/client.py,sha256=XWGHeb7FG9DWNz5L3IdjGHfVaaAN3WfwBg-z6Zj--VY,24599
|
73
|
+
mixpeek-0.6.8.dist-info/LICENSE,sha256=4Wv5VxfDWkCcIouCfq1NrLwPm24Z83PE8Nbi3KyoEeg,1064
|
74
|
+
mixpeek-0.6.8.dist-info/METADATA,sha256=IwTgbJ7i9snNC4MkYp4hykcuiJdXS0swJooH9WNGEn8,3985
|
75
|
+
mixpeek-0.6.8.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
76
|
+
mixpeek-0.6.8.dist-info/RECORD,,
|
mixpeek-0.6.6.dist-info/RECORD
DELETED
@@ -1,75 +0,0 @@
|
|
1
|
-
mixpeek/__init__.py,sha256=oC5q6VUOdDubpFT7PRtno7IUyzgiU9uSRyA7f0Ka0eY,2098
|
2
|
-
mixpeek/base_client.py,sha256=j5FwPDpVqWeSs4UAwn65DXIeaKrtkyCgK1BF9T6X8Nk,44940
|
3
|
-
mixpeek/client.py,sha256=ka2f4aHaZwGq5ju3MnDLImlgCjce3BXXl4gw5I9HB90,2047
|
4
|
-
mixpeek/core/__init__.py,sha256=RWfyDqkzWsf8e3VGc3NV60MovfJbg5XWzNFGB2DZ0hA,790
|
5
|
-
mixpeek/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
6
|
-
mixpeek/core/client_wrapper.py,sha256=2nzG6KTsgUd7e3ZemEilM2XkINJCt-aq8E3ZEvVylA4,2622
|
7
|
-
mixpeek/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
8
|
-
mixpeek/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
|
9
|
-
mixpeek/core/http_client.py,sha256=5ok6hqgZDJhg57EHvMnr0BBaHdG50QxFPKaCZ9aVWTc,5059
|
10
|
-
mixpeek/core/jsonable_encoder.py,sha256=IEhJedBpobt0zOfjW0pcH_sptQH3_frWtRF_s6i4HTM,3799
|
11
|
-
mixpeek/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
|
12
|
-
mixpeek/core/request_options.py,sha256=-3QoOMMHI2exIyHH6Q2MD7rpo_6w-i6zMAy0nqWTN8c,1420
|
13
|
-
mixpeek/environment.py,sha256=-muYBZQwCYNISO0ic3Kkn_hPqfrB_VpOv_RpBoCKA6Q,156
|
14
|
-
mixpeek/errors/__init__.py,sha256=whc3hN4Au19m_MxwQGjxUEfmSPyHqjmvOS0ESc0S7Qk,534
|
15
|
-
mixpeek/errors/bad_request_error.py,sha256=xHpPeLG8lM_kLR1QpOHI4xOuWVFEOgQfQi37kOcB0wc,285
|
16
|
-
mixpeek/errors/forbidden_error.py,sha256=CYoHSeucV5tjDJUTj19Dp6EoJZBvRswNAT9YhITApfE,284
|
17
|
-
mixpeek/errors/internal_server_error.py,sha256=fMmyOAEwUto7X9Mp65KbL0XkvepZsmT6p1p3hIBEuFg,289
|
18
|
-
mixpeek/errors/not_found_error.py,sha256=y5TwirUAu_TWO2d1Poh2ALf1IHj2v728z6AxrGexSVg,283
|
19
|
-
mixpeek/errors/unauthorized_error.py,sha256=nH-QOnS5KLta5PB4I-UoETY4i_Uz3-mF9xCwScE1JOE,287
|
20
|
-
mixpeek/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
21
|
-
mixpeek/pipeline/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
22
|
-
mixpeek/pipeline/client.py,sha256=l5bv4trvLOTFoMSWtghBBdfDRYxrfH4WgOpyvxTkajY,22611
|
23
|
-
mixpeek/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
|
-
mixpeek/storage/__init__.py,sha256=DXpRqQD-Sr8yiyNQYMJeAq10AQAXryiMx42UW4mDNrk,108
|
25
|
-
mixpeek/storage/client.py,sha256=RRxkwuvGr0ozvthNxoKCeMtW71LhdbRggKexHleSMq8,7103
|
26
|
-
mixpeek/storage/sample/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
27
|
-
mixpeek/storage/sample/client.py,sha256=tIjSkyqTnp4jLSd4w7qW_Kt7aoYEZeP33_9LR7BBz5Q,13404
|
28
|
-
mixpeek/types/__init__.py,sha256=ap7tSQXWWqyaWSO6dDuCOfsNUPFOj_DsqVaoZ32_Y7U,2371
|
29
|
-
mixpeek/types/api_key.py,sha256=DnZf9eer296hvfC5PK4Hcrg7-LywKA_fSn68aaMzf5U,1013
|
30
|
-
mixpeek/types/audio_params.py,sha256=3KowuNn3ClYTXWsFvKHd8XrR1G8hmydusRzQQ6cAp5I,939
|
31
|
-
mixpeek/types/configs_response.py,sha256=x58BeJQr36oQhA61TFw6kbX8B-endOzfrs2L14FDZ8M,1198
|
32
|
-
mixpeek/types/connection.py,sha256=b2dw5xagRgTuGjBB_NSW0JsVeSWGiFwkM6-E3jQc9IA,1144
|
33
|
-
mixpeek/types/connection_engine.py,sha256=Gy43bjrZTkfiYtQQZGZFvJwHvHS0PxhZCf8l-LRrbRE,168
|
34
|
-
mixpeek/types/csv_params.py,sha256=Adc3qwAOGpvRRAu3iV6ObN5EbLPnzmsj8IxTyDc0ZCM,938
|
35
|
-
mixpeek/types/destination.py,sha256=jU4igBU4bKOghQzW4msvZ3e-FydYcgKp_gdbJ0LVdWk,1113
|
36
|
-
mixpeek/types/embedding_response.py,sha256=lZc6MhLpcNFfb9p_I0FpQ2I7iqpL_xZB5a9jlvJeQ2I,1056
|
37
|
-
mixpeek/types/error_message.py,sha256=8Wh_GdH3jOviv_FYLyzQH20qbFTSzKqqjdZlOe2tlbE,905
|
38
|
-
mixpeek/types/error_response.py,sha256=SNectmi0OaoeWGAUvO7D0h40rf7jIEh3SLUtKxXs3ms,995
|
39
|
-
mixpeek/types/extract_response.py,sha256=0rTJGg1mlnlC-jvvEcUDeCc1xqZTQk0KVKa2tRw-0oU,1093
|
40
|
-
mixpeek/types/field_type.py,sha256=ihpE7AL8NwS8mZ9ItVeK26KBmrIa0tLbCag96Pk4dqE,160
|
41
|
-
mixpeek/types/generation_response.py,sha256=dWqZoOfbZzNpEciX2_p46EHnY6fL1_gBjHcke2vdJ7c,1141
|
42
|
-
mixpeek/types/html_params.py,sha256=5wylzm01kSNgIgMFMGmgj93LCJpubrX0gp2NuKxjVYE,949
|
43
|
-
mixpeek/types/http_validation_error.py,sha256=C6i5Fm74cECbzWUDvUDgAO9g9ryIFeKesoeqTUNakJc,1010
|
44
|
-
mixpeek/types/image_params.py,sha256=zdeXR_-EGw_7MKOF1D2zilRFiYJWohDnLVTo1VwLa7U,1070
|
45
|
-
mixpeek/types/message.py,sha256=vvXf0byJJ4HWoAEyTyB1qnnSbu-H6OGIkv6ptDX-0R8,1057
|
46
|
-
mixpeek/types/metadata.py,sha256=Us5RgZ4WT-2RhpMLs8tjzP42P-ZrjRhYL0NNup0zvto,1047
|
47
|
-
mixpeek/types/modality.py,sha256=HwFmbfcJfBKLYg680oQLkGSiQETfNPqiB-mQO7X8sjA,102
|
48
|
-
mixpeek/types/model.py,sha256=2jcHm1qJhUaug0oB2vCi-2S1gCewsghhnBPeHg4Q_Xw,1076
|
49
|
-
mixpeek/types/models.py,sha256=RnTOybDVTkVIWrZRY18cULyqjGGTWE2ZJuYT0lYv5lo,173
|
50
|
-
mixpeek/types/pdf_params.py,sha256=9RF3S2uuE4oyaoPlRfI52phqWyD8ViOz6tl25HXBlek,1646
|
51
|
-
mixpeek/types/pipeline_response.py,sha256=dZZKcmG7kI8freXZNgrAq7NccatgGmsvkmw5ailk7-g,1577
|
52
|
-
mixpeek/types/pipeline_task_response.py,sha256=4We2MKw_vqOhh8ItCtkHNL2aL1W3lHaYVVd8KSnJUy0,975
|
53
|
-
mixpeek/types/ppt_params.py,sha256=FS9BjjiZStDhGtaImv8uz9lhQG6r6a9gBiUJsPzhca0,888
|
54
|
-
mixpeek/types/pptx_params.py,sha256=W2hrSVvYjRxDrClFRoZKmM0dSb0YbCOjjT5dBiJMkZw,889
|
55
|
-
mixpeek/types/settings.py,sha256=F_KpO1F5_yHyRXQr7SPn7QIjVa05ViiyXShlB_ODKsI,1223
|
56
|
-
mixpeek/types/source.py,sha256=T_C2UPZGJjHBemMrPa8XN05JVBzRUpbw2VykW4HXEs0,1181
|
57
|
-
mixpeek/types/source_destination_mapping.py,sha256=lLRKi4bM60oEuhny3MPbx2FIyRoWS1J8ZtwSRltSerU,1207
|
58
|
-
mixpeek/types/txt_params.py,sha256=nongbYA0BWr4kHvNBDdA6yoNkg6TXTsP2AG3tstyLd8,888
|
59
|
-
mixpeek/types/user.py,sha256=bZ4ROKzi-5c8pfHQ-nvM445m_d3p9DK-OjTbGhXY1-w,1249
|
60
|
-
mixpeek/types/validation_error.py,sha256=dy6Ev1xmAsX_Wcck5AX8XvcVNP5xA-Lwlt7FTceiYqs,1029
|
61
|
-
mixpeek/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
62
|
-
mixpeek/types/video_params.py,sha256=SJlONUkncIVzFz37Q8iNNznYd10hdLgrMnRmxT5yz5E,890
|
63
|
-
mixpeek/types/workflow_code_response.py,sha256=Ss20TnpKi43ql19PdSMJVCoDacyBQ3nMlUond0wgaYw,924
|
64
|
-
mixpeek/types/workflow_response.py,sha256=t3fhcd780TUiCbFmX-2hRQY9oajjdE6g8AOy-lVS95A,1059
|
65
|
-
mixpeek/types/workflow_settings.py,sha256=1YXWRIJUxra85keIOglvJra62rItRyuH8PYcG3pgRvE,1003
|
66
|
-
mixpeek/types/xlsx_params.py,sha256=SXGQe3KhevNEdxjqIxxHmmuBrrk4IBetEcFaHq-_zQA,939
|
67
|
-
mixpeek/user/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
68
|
-
mixpeek/user/client.py,sha256=pHLUkVtYVlTodDtPHBCuY3HOMra_kW7GWrrqHYCluq4,14785
|
69
|
-
mixpeek/version.py,sha256=DfAuS0W7koTv3v8TZFxY1W5LvfaqOvG96P6Kc5fNnU0,75
|
70
|
-
mixpeek/workflow/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
71
|
-
mixpeek/workflow/client.py,sha256=BbPm46yRHcUH8EJLnDrUpOv0iz98o8N3wiFIB93K494,24356
|
72
|
-
mixpeek-0.6.6.dist-info/LICENSE,sha256=4Wv5VxfDWkCcIouCfq1NrLwPm24Z83PE8Nbi3KyoEeg,1064
|
73
|
-
mixpeek-0.6.6.dist-info/METADATA,sha256=F6XhZAEXkbVbZ0JknZLCaINiCUIKI9iW7_UchmqLqd4,3985
|
74
|
-
mixpeek-0.6.6.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
75
|
-
mixpeek-0.6.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|