mixpeek 0.6.2__py3-none-any.whl → 0.6.5__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 (40) hide show
  1. mixpeek/__init__.py +12 -8
  2. mixpeek/base_client.py +857 -23
  3. mixpeek/client.py +7 -7
  4. mixpeek/core/client_wrapper.py +1 -1
  5. mixpeek/{pipelines → pipeline}/client.py +26 -20
  6. mixpeek/storage/__init__.py +3 -0
  7. mixpeek/storage/client.py +7 -112
  8. mixpeek/{embed → storage/sample}/client.py +61 -129
  9. mixpeek/types/__init__.py +8 -0
  10. mixpeek/types/configs_response.py +14 -3
  11. mixpeek/types/destination.py +14 -3
  12. mixpeek/types/embedding_response.py +6 -2
  13. mixpeek/types/extract_response.py +39 -0
  14. mixpeek/types/generation_response.py +6 -4
  15. mixpeek/types/message.py +9 -2
  16. mixpeek/types/metadata.py +0 -2
  17. mixpeek/types/modality.py +1 -1
  18. mixpeek/types/model.py +9 -2
  19. mixpeek/types/pipeline_response.py +49 -0
  20. mixpeek/types/pipeline_task_response.py +32 -0
  21. mixpeek/types/source.py +14 -3
  22. mixpeek/types/source_destination_mapping.py +14 -3
  23. mixpeek/types/workflow_code_response.py +29 -0
  24. mixpeek/{users → user}/client.py +10 -10
  25. mixpeek/{workflows → workflow}/client.py +14 -15
  26. {mixpeek-0.6.2.dist-info → mixpeek-0.6.5.dist-info}/METADATA +1 -1
  27. {mixpeek-0.6.2.dist-info → mixpeek-0.6.5.dist-info}/RECORD +33 -36
  28. mixpeek/extract/client.py +0 -347
  29. mixpeek/generators/client.py +0 -237
  30. mixpeek/parse/client.py +0 -111
  31. mixpeek/parse_client.py +0 -14
  32. mixpeek/pipelines/__init__.py +0 -2
  33. mixpeek/users/__init__.py +0 -2
  34. mixpeek/workflows/__init__.py +0 -2
  35. /mixpeek/{embed → pipeline}/__init__.py +0 -0
  36. /mixpeek/{extract → storage/sample}/__init__.py +0 -0
  37. /mixpeek/{generators → user}/__init__.py +0 -0
  38. /mixpeek/{parse → workflow}/__init__.py +0 -0
  39. {mixpeek-0.6.2.dist-info → mixpeek-0.6.5.dist-info}/LICENSE +0 -0
  40. {mixpeek-0.6.2.dist-info → mixpeek-0.6.5.dist-info}/WHEEL +0 -0
@@ -0,0 +1,29 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+
8
+ try:
9
+ import pydantic.v1 as pydantic # type: ignore
10
+ except ImportError:
11
+ import pydantic # type: ignore
12
+
13
+
14
+ class WorkflowCodeResponse(pydantic.BaseModel):
15
+ code_as_string: str
16
+
17
+ def json(self, **kwargs: typing.Any) -> str:
18
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
19
+ return super().json(**kwargs_with_defaults)
20
+
21
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
22
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
23
+ return super().dict(**kwargs_with_defaults)
24
+
25
+ class Config:
26
+ frozen = True
27
+ smart_union = True
28
+ extra = pydantic.Extra.allow
29
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -30,11 +30,11 @@ except ImportError:
30
30
  OMIT = typing.cast(typing.Any, ...)
31
31
 
32
32
 
33
- class UsersClient:
33
+ class UserClient:
34
34
  def __init__(self, *, client_wrapper: SyncClientWrapper):
35
35
  self._client_wrapper = client_wrapper
36
36
 
37
- def get_user_users_get(self, *, request_options: typing.Optional[RequestOptions] = None) -> User:
37
+ def get(self, *, request_options: typing.Optional[RequestOptions] = None) -> User:
38
38
  """
39
39
  Parameters:
40
40
  - request_options: typing.Optional[RequestOptions]. Request-specific configuration.
@@ -46,7 +46,7 @@ class UsersClient:
46
46
  index_id="YOUR_INDEX_ID",
47
47
  api_key="YOUR_API_KEY",
48
48
  )
49
- client.users.get_user_users_get()
49
+ client.user.get()
50
50
  """
51
51
  _response = self._client_wrapper.httpx_client.request(
52
52
  "GET",
@@ -88,7 +88,7 @@ class UsersClient:
88
88
  raise ApiError(status_code=_response.status_code, body=_response.text)
89
89
  raise ApiError(status_code=_response.status_code, body=_response_json)
90
90
 
91
- def update_user_users_put(
91
+ def update(
92
92
  self,
93
93
  *,
94
94
  api_keys: typing.Optional[typing.Sequence[ApiKey]] = OMIT,
@@ -113,7 +113,7 @@ class UsersClient:
113
113
  index_id="YOUR_INDEX_ID",
114
114
  api_key="YOUR_API_KEY",
115
115
  )
116
- client.users.update_user_users_put()
116
+ client.user.update()
117
117
  """
118
118
  _request: typing.Dict[str, typing.Any] = {}
119
119
  if api_keys is not OMIT:
@@ -169,11 +169,11 @@ class UsersClient:
169
169
  raise ApiError(status_code=_response.status_code, body=_response_json)
170
170
 
171
171
 
172
- class AsyncUsersClient:
172
+ class AsyncUserClient:
173
173
  def __init__(self, *, client_wrapper: AsyncClientWrapper):
174
174
  self._client_wrapper = client_wrapper
175
175
 
176
- async def get_user_users_get(self, *, request_options: typing.Optional[RequestOptions] = None) -> User:
176
+ async def get(self, *, request_options: typing.Optional[RequestOptions] = None) -> User:
177
177
  """
178
178
  Parameters:
179
179
  - request_options: typing.Optional[RequestOptions]. Request-specific configuration.
@@ -185,7 +185,7 @@ class AsyncUsersClient:
185
185
  index_id="YOUR_INDEX_ID",
186
186
  api_key="YOUR_API_KEY",
187
187
  )
188
- await client.users.get_user_users_get()
188
+ await client.user.get()
189
189
  """
190
190
  _response = await self._client_wrapper.httpx_client.request(
191
191
  "GET",
@@ -227,7 +227,7 @@ class AsyncUsersClient:
227
227
  raise ApiError(status_code=_response.status_code, body=_response.text)
228
228
  raise ApiError(status_code=_response.status_code, body=_response_json)
229
229
 
230
- async def update_user_users_put(
230
+ async def update(
231
231
  self,
232
232
  *,
233
233
  api_keys: typing.Optional[typing.Sequence[ApiKey]] = OMIT,
@@ -252,7 +252,7 @@ class AsyncUsersClient:
252
252
  index_id="YOUR_INDEX_ID",
253
253
  api_key="YOUR_API_KEY",
254
254
  )
255
- await client.users.update_user_users_put()
255
+ await client.user.update()
256
256
  """
257
257
  _request: typing.Dict[str, typing.Any] = {}
258
258
  if api_keys is not OMIT:
@@ -18,6 +18,7 @@ from ..errors.unauthorized_error import UnauthorizedError
18
18
  from ..errors.unprocessable_entity_error import UnprocessableEntityError
19
19
  from ..types.error_response import ErrorResponse
20
20
  from ..types.http_validation_error import HttpValidationError
21
+ from ..types.workflow_code_response import WorkflowCodeResponse
21
22
  from ..types.workflow_response import WorkflowResponse
22
23
  from ..types.workflow_settings import WorkflowSettings
23
24
 
@@ -30,7 +31,7 @@ except ImportError:
30
31
  OMIT = typing.cast(typing.Any, ...)
31
32
 
32
33
 
33
- class WorkflowsClient:
34
+ class WorkflowClient:
34
35
  def __init__(self, *, client_wrapper: SyncClientWrapper):
35
36
  self._client_wrapper = client_wrapper
36
37
 
@@ -72,7 +73,7 @@ class WorkflowsClient:
72
73
  index_id="YOUR_INDEX_ID",
73
74
  api_key="YOUR_API_KEY",
74
75
  )
75
- client.workflows.create(
76
+ client.workflow.create(
76
77
  code_as_string="code_as_string",
77
78
  settings=WorkflowSettings(),
78
79
  )
@@ -159,7 +160,7 @@ class WorkflowsClient:
159
160
  index_id="YOUR_INDEX_ID",
160
161
  api_key="YOUR_API_KEY",
161
162
  )
162
- client.workflows.invoke(
163
+ client.workflow.invoke(
163
164
  workflow_id="workflow_id",
164
165
  request={},
165
166
  )
@@ -221,9 +222,7 @@ class WorkflowsClient:
221
222
  raise ApiError(status_code=_response.status_code, body=_response.text)
222
223
  raise ApiError(status_code=_response.status_code, body=_response_json)
223
224
 
224
- def convert_code_to_string(
225
- self, *, request: str, request_options: typing.Optional[RequestOptions] = None
226
- ) -> WorkflowResponse:
225
+ def code(self, *, request: str, request_options: typing.Optional[RequestOptions] = None) -> WorkflowCodeResponse:
227
226
  """
228
227
  Parameters:
229
228
  - request: str.
@@ -237,7 +236,7 @@ class WorkflowsClient:
237
236
  index_id="YOUR_INDEX_ID",
238
237
  api_key="YOUR_API_KEY",
239
238
  )
240
- client.workflows.convert_code_to_string(
239
+ client.workflow.code(
241
240
  request="string",
242
241
  )
243
242
  """
@@ -263,7 +262,7 @@ class WorkflowsClient:
263
262
  max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
264
263
  )
265
264
  if 200 <= _response.status_code < 300:
266
- return pydantic.parse_obj_as(WorkflowResponse, _response.json()) # type: ignore
265
+ return pydantic.parse_obj_as(WorkflowCodeResponse, _response.json()) # type: ignore
267
266
  if _response.status_code == 400:
268
267
  raise BadRequestError(pydantic.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
269
268
  if _response.status_code == 401:
@@ -283,7 +282,7 @@ class WorkflowsClient:
283
282
  raise ApiError(status_code=_response.status_code, body=_response_json)
284
283
 
285
284
 
286
- class AsyncWorkflowsClient:
285
+ class AsyncWorkflowClient:
287
286
  def __init__(self, *, client_wrapper: AsyncClientWrapper):
288
287
  self._client_wrapper = client_wrapper
289
288
 
@@ -325,7 +324,7 @@ class AsyncWorkflowsClient:
325
324
  index_id="YOUR_INDEX_ID",
326
325
  api_key="YOUR_API_KEY",
327
326
  )
328
- await client.workflows.create(
327
+ await client.workflow.create(
329
328
  code_as_string="code_as_string",
330
329
  settings=WorkflowSettings(),
331
330
  )
@@ -412,7 +411,7 @@ class AsyncWorkflowsClient:
412
411
  index_id="YOUR_INDEX_ID",
413
412
  api_key="YOUR_API_KEY",
414
413
  )
415
- await client.workflows.invoke(
414
+ await client.workflow.invoke(
416
415
  workflow_id="workflow_id",
417
416
  request={},
418
417
  )
@@ -474,9 +473,9 @@ class AsyncWorkflowsClient:
474
473
  raise ApiError(status_code=_response.status_code, body=_response.text)
475
474
  raise ApiError(status_code=_response.status_code, body=_response_json)
476
475
 
477
- async def convert_code_to_string(
476
+ async def code(
478
477
  self, *, request: str, request_options: typing.Optional[RequestOptions] = None
479
- ) -> WorkflowResponse:
478
+ ) -> WorkflowCodeResponse:
480
479
  """
481
480
  Parameters:
482
481
  - request: str.
@@ -490,7 +489,7 @@ class AsyncWorkflowsClient:
490
489
  index_id="YOUR_INDEX_ID",
491
490
  api_key="YOUR_API_KEY",
492
491
  )
493
- await client.workflows.convert_code_to_string(
492
+ await client.workflow.code(
494
493
  request="string",
495
494
  )
496
495
  """
@@ -516,7 +515,7 @@ class AsyncWorkflowsClient:
516
515
  max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
517
516
  )
518
517
  if 200 <= _response.status_code < 300:
519
- return pydantic.parse_obj_as(WorkflowResponse, _response.json()) # type: ignore
518
+ return pydantic.parse_obj_as(WorkflowCodeResponse, _response.json()) # type: ignore
520
519
  if _response.status_code == 400:
521
520
  raise BadRequestError(pydantic.parse_obj_as(ErrorResponse, _response.json())) # type: ignore
522
521
  if _response.status_code == 401:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mixpeek
3
- Version: 0.6.2
3
+ Version: 0.6.5
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Programming Language :: Python :: 3
@@ -1,17 +1,15 @@
1
- mixpeek/__init__.py,sha256=lUhNeNcGm17ibZbyMRdI-mRniA8Ez4Kl3te5eQfL6T8,2000
2
- mixpeek/base_client.py,sha256=wl8CUr8zcD2DWTQ45MIiJ3aTbuEbkW4nwMRxLnwl1e0,7338
3
- mixpeek/client.py,sha256=4FB09MxWYPm7ci7VBsuSYQvp-Fj6XWVaMmbcGg_J19o,2064
1
+ mixpeek/__init__.py,sha256=oC5q6VUOdDubpFT7PRtno7IUyzgiU9uSRyA7f0Ka0eY,2098
2
+ mixpeek/base_client.py,sha256=j5FwPDpVqWeSs4UAwn65DXIeaKrtkyCgK1BF9T6X8Nk,44940
3
+ mixpeek/client.py,sha256=ka2f4aHaZwGq5ju3MnDLImlgCjce3BXXl4gw5I9HB90,2047
4
4
  mixpeek/core/__init__.py,sha256=RWfyDqkzWsf8e3VGc3NV60MovfJbg5XWzNFGB2DZ0hA,790
5
5
  mixpeek/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
6
- mixpeek/core/client_wrapper.py,sha256=n0jL710h_e-Eheb8l0f5uGKnMI2xQzWJv7NAAAR2L-A,2622
6
+ mixpeek/core/client_wrapper.py,sha256=3m0ZPwQ3crCQGAMM2uU0ZIqJcyxyZoaeDr79TE8Pddc,2622
7
7
  mixpeek/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
8
8
  mixpeek/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
9
9
  mixpeek/core/http_client.py,sha256=5ok6hqgZDJhg57EHvMnr0BBaHdG50QxFPKaCZ9aVWTc,5059
10
10
  mixpeek/core/jsonable_encoder.py,sha256=IEhJedBpobt0zOfjW0pcH_sptQH3_frWtRF_s6i4HTM,3799
11
11
  mixpeek/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
12
12
  mixpeek/core/request_options.py,sha256=-3QoOMMHI2exIyHH6Q2MD7rpo_6w-i6zMAy0nqWTN8c,1420
13
- mixpeek/embed/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
14
- mixpeek/embed/client.py,sha256=haXcK4uwxnelQEu_CKExZTxX8axjIoHESdENm711xWk,16086
15
13
  mixpeek/environment.py,sha256=-muYBZQwCYNISO0ic3Kkn_hPqfrB_VpOv_RpBoCKA6Q,156
16
14
  mixpeek/errors/__init__.py,sha256=whc3hN4Au19m_MxwQGjxUEfmSPyHqjmvOS0ESc0S7Qk,534
17
15
  mixpeek/errors/bad_request_error.py,sha256=xHpPeLG8lM_kLR1QpOHI4xOuWVFEOgQfQi37kOcB0wc,285
@@ -20,59 +18,58 @@ mixpeek/errors/internal_server_error.py,sha256=fMmyOAEwUto7X9Mp65KbL0XkvepZsmT6p
20
18
  mixpeek/errors/not_found_error.py,sha256=y5TwirUAu_TWO2d1Poh2ALf1IHj2v728z6AxrGexSVg,283
21
19
  mixpeek/errors/unauthorized_error.py,sha256=nH-QOnS5KLta5PB4I-UoETY4i_Uz3-mF9xCwScE1JOE,287
22
20
  mixpeek/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
23
- mixpeek/extract/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
24
- mixpeek/extract/client.py,sha256=qaslz87C5K3kh1CVL9VTuhgWgOKVWk8ctavYpkrqcDI,15158
25
- mixpeek/generators/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
26
- mixpeek/generators/client.py,sha256=SzB9kLokmXDOzPAfeQIbmrcMtXYDoJ4LqqGAY8ELkzo,10251
27
- mixpeek/parse/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
28
- mixpeek/parse/client.py,sha256=Zav85ROBG9jmhi6JKwy0FAcpvddGlwwE4uDv4dZ7o4c,4717
29
- mixpeek/parse_client.py,sha256=yRhssnPCsjSKnS0LknhiYicAOuRcRnRVcn7iWaswQBU,279
30
- mixpeek/pipelines/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
31
- mixpeek/pipelines/client.py,sha256=giu5j2RBt4XbWWI4n9TBUxRUOEmsp1iDPSLU37utayg,22360
21
+ mixpeek/pipeline/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
22
+ mixpeek/pipeline/client.py,sha256=l5bv4trvLOTFoMSWtghBBdfDRYxrfH4WgOpyvxTkajY,22611
32
23
  mixpeek/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- mixpeek/storage/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
34
- mixpeek/storage/client.py,sha256=Ug_1zg0KF3lMT2JIipiryHB3dikitt7-GIVxrzdKQow,12609
35
- mixpeek/types/__init__.py,sha256=frwgYFJuSzwu6UyATG--EvTATm81whup82khta72lFA,2060
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
36
29
  mixpeek/types/api_key.py,sha256=DnZf9eer296hvfC5PK4Hcrg7-LywKA_fSn68aaMzf5U,1013
37
30
  mixpeek/types/audio_params.py,sha256=3KowuNn3ClYTXWsFvKHd8XrR1G8hmydusRzQQ6cAp5I,939
38
- mixpeek/types/configs_response.py,sha256=_gH6KyKLlC6CZcJeJYFO0ecr7QLSpmgKJqlqxiLcXCQ,959
31
+ mixpeek/types/configs_response.py,sha256=x58BeJQr36oQhA61TFw6kbX8B-endOzfrs2L14FDZ8M,1198
39
32
  mixpeek/types/connection.py,sha256=b2dw5xagRgTuGjBB_NSW0JsVeSWGiFwkM6-E3jQc9IA,1144
40
33
  mixpeek/types/connection_engine.py,sha256=Gy43bjrZTkfiYtQQZGZFvJwHvHS0PxhZCf8l-LRrbRE,168
41
34
  mixpeek/types/csv_params.py,sha256=Adc3qwAOGpvRRAu3iV6ObN5EbLPnzmsj8IxTyDc0ZCM,938
42
- mixpeek/types/destination.py,sha256=bylFUTAdnonbUw_V1wBF4cNEAsyzkkgwa3lY9U029Ko,945
43
- mixpeek/types/embedding_response.py,sha256=gQCNVHNVqYii4WLZisEbjkOllSaTwz3PxOhCBOe808Y,955
35
+ mixpeek/types/destination.py,sha256=jU4igBU4bKOghQzW4msvZ3e-FydYcgKp_gdbJ0LVdWk,1113
36
+ mixpeek/types/embedding_response.py,sha256=lZc6MhLpcNFfb9p_I0FpQ2I7iqpL_xZB5a9jlvJeQ2I,1056
44
37
  mixpeek/types/error_message.py,sha256=8Wh_GdH3jOviv_FYLyzQH20qbFTSzKqqjdZlOe2tlbE,905
45
38
  mixpeek/types/error_response.py,sha256=SNectmi0OaoeWGAUvO7D0h40rf7jIEh3SLUtKxXs3ms,995
39
+ mixpeek/types/extract_response.py,sha256=gaNMOtfE5MkaUHtqLprP67TIO6LYSyJURwGVMWmv5mc,1184
46
40
  mixpeek/types/field_type.py,sha256=ihpE7AL8NwS8mZ9ItVeK26KBmrIa0tLbCag96Pk4dqE,160
47
- mixpeek/types/generation_response.py,sha256=A07sNXlAY1sY3Cl7zajf4zZaZbdTPFpElg1oDf636P0,1117
41
+ mixpeek/types/generation_response.py,sha256=dWqZoOfbZzNpEciX2_p46EHnY6fL1_gBjHcke2vdJ7c,1141
48
42
  mixpeek/types/html_params.py,sha256=5wylzm01kSNgIgMFMGmgj93LCJpubrX0gp2NuKxjVYE,949
49
43
  mixpeek/types/http_validation_error.py,sha256=C6i5Fm74cECbzWUDvUDgAO9g9ryIFeKesoeqTUNakJc,1010
50
44
  mixpeek/types/image_params.py,sha256=zdeXR_-EGw_7MKOF1D2zilRFiYJWohDnLVTo1VwLa7U,1070
51
- mixpeek/types/message.py,sha256=21yebcf5X18U92khfedI-Gl02MkaBzDw4guLNy49bUk,918
52
- mixpeek/types/metadata.py,sha256=YA7JZx_s7ChSqBA5Ay-zt8cGszDGmQv8PElYzi5N02E,1147
53
- mixpeek/types/modality.py,sha256=GcEBlbYKdNs0qdyKnmrbgoDHyC1WYimv5PFKUjuI2jc,170
54
- mixpeek/types/model.py,sha256=mBXXY-K54nqGVqt7SnzAyZeDdoU7wVMzGrhM8XTAmx4,948
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
55
49
  mixpeek/types/models.py,sha256=RnTOybDVTkVIWrZRY18cULyqjGGTWE2ZJuYT0lYv5lo,173
56
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
57
53
  mixpeek/types/ppt_params.py,sha256=FS9BjjiZStDhGtaImv8uz9lhQG6r6a9gBiUJsPzhca0,888
58
54
  mixpeek/types/pptx_params.py,sha256=W2hrSVvYjRxDrClFRoZKmM0dSb0YbCOjjT5dBiJMkZw,889
59
55
  mixpeek/types/settings.py,sha256=F_KpO1F5_yHyRXQr7SPn7QIjVa05ViiyXShlB_ODKsI,1223
60
- mixpeek/types/source.py,sha256=Dq0CGXa3tyfe01L-d4si02j6YavQ3PQj9N_KkYuMsCk,998
61
- mixpeek/types/source_destination_mapping.py,sha256=2CTDTYcPbxUco8m_9ebbZ4xQ2_piylkRQeO5fFvdDkM,1041
56
+ mixpeek/types/source.py,sha256=T_C2UPZGJjHBemMrPa8XN05JVBzRUpbw2VykW4HXEs0,1181
57
+ mixpeek/types/source_destination_mapping.py,sha256=lLRKi4bM60oEuhny3MPbx2FIyRoWS1J8ZtwSRltSerU,1207
62
58
  mixpeek/types/txt_params.py,sha256=nongbYA0BWr4kHvNBDdA6yoNkg6TXTsP2AG3tstyLd8,888
63
59
  mixpeek/types/user.py,sha256=bZ4ROKzi-5c8pfHQ-nvM445m_d3p9DK-OjTbGhXY1-w,1249
64
60
  mixpeek/types/validation_error.py,sha256=dy6Ev1xmAsX_Wcck5AX8XvcVNP5xA-Lwlt7FTceiYqs,1029
65
61
  mixpeek/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
66
62
  mixpeek/types/video_params.py,sha256=SJlONUkncIVzFz37Q8iNNznYd10hdLgrMnRmxT5yz5E,890
63
+ mixpeek/types/workflow_code_response.py,sha256=Ss20TnpKi43ql19PdSMJVCoDacyBQ3nMlUond0wgaYw,924
67
64
  mixpeek/types/workflow_response.py,sha256=t3fhcd780TUiCbFmX-2hRQY9oajjdE6g8AOy-lVS95A,1059
68
65
  mixpeek/types/workflow_settings.py,sha256=1YXWRIJUxra85keIOglvJra62rItRyuH8PYcG3pgRvE,1003
69
66
  mixpeek/types/xlsx_params.py,sha256=SXGQe3KhevNEdxjqIxxHmmuBrrk4IBetEcFaHq-_zQA,939
70
- mixpeek/users/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
71
- mixpeek/users/client.py,sha256=Fv01PY1J6mbuaCJPdKr97eONPcmLqzT6q9kuyNfjlSQ,14911
67
+ mixpeek/user/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
68
+ mixpeek/user/client.py,sha256=pHLUkVtYVlTodDtPHBCuY3HOMra_kW7GWrrqHYCluq4,14785
72
69
  mixpeek/version.py,sha256=DfAuS0W7koTv3v8TZFxY1W5LvfaqOvG96P6Kc5fNnU0,75
73
- mixpeek/workflows/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
74
- mixpeek/workflows/client.py,sha256=lDfSwYGPSMx9enKzPMKObdL93pFn6ByZH04F83cz9jA,24370
75
- mixpeek-0.6.2.dist-info/LICENSE,sha256=4Wv5VxfDWkCcIouCfq1NrLwPm24Z83PE8Nbi3KyoEeg,1064
76
- mixpeek-0.6.2.dist-info/METADATA,sha256=YsLQiIOSjceSER6cNNRlJXFlpYQ78bCLOnPqWhoUWUg,3985
77
- mixpeek-0.6.2.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
78
- mixpeek-0.6.2.dist-info/RECORD,,
70
+ mixpeek/workflow/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
71
+ mixpeek/workflow/client.py,sha256=BbPm46yRHcUH8EJLnDrUpOv0iz98o8N3wiFIB93K494,24356
72
+ mixpeek-0.6.5.dist-info/LICENSE,sha256=4Wv5VxfDWkCcIouCfq1NrLwPm24Z83PE8Nbi3KyoEeg,1064
73
+ mixpeek-0.6.5.dist-info/METADATA,sha256=oHhR8hntHWa7Zp1gxEIR77Rp5HeajDKGIK_tCFHL_cg,3985
74
+ mixpeek-0.6.5.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
75
+ mixpeek-0.6.5.dist-info/RECORD,,