mixpeek 0.14.0__py3-none-any.whl → 0.15.1__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 (62) hide show
  1. mixpeek/_version.py +1 -1
  2. mixpeek/assets.py +8 -8
  3. mixpeek/collections.py +4 -4
  4. mixpeek/featureextractors.py +6 -6
  5. mixpeek/features.py +20 -20
  6. mixpeek/ingest.py +12 -54
  7. mixpeek/models/__init__.py +27 -108
  8. mixpeek/models/assetresponse.py +4 -4
  9. mixpeek/models/availableindexesresponse.py +2 -2
  10. mixpeek/models/availablemodels.py +4 -0
  11. mixpeek/models/createnamespacerequest.py +4 -4
  12. mixpeek/models/embeddingrequest.py +2 -2
  13. mixpeek/models/entitysettings.py +50 -0
  14. mixpeek/models/featureextractionembeddingrequest.py +2 -2
  15. mixpeek/models/imagedescribesettings.py +6 -6
  16. mixpeek/models/imagereadsettings.py +6 -6
  17. mixpeek/models/imagesettings.py +17 -4
  18. mixpeek/models/internal/__init__.py +5 -0
  19. mixpeek/models/internal/globals.py +22 -0
  20. mixpeek/models/listassetsrequest.py +3 -3
  21. mixpeek/models/listfeaturesrequest.py +3 -3
  22. mixpeek/models/{logicaloperator_input.py → logicaloperator.py} +8 -8
  23. mixpeek/models/namespaceresponse.py +2 -2
  24. mixpeek/models/processimageurlinput.py +1 -13
  25. mixpeek/models/processtextinput.py +1 -13
  26. mixpeek/models/processvideourlinput.py +1 -13
  27. mixpeek/models/search_features_features_search_postop.py +4 -7
  28. mixpeek/models/{search_model_searchquery_input.py → search_model_searchquery.py} +7 -7
  29. mixpeek/models/searchassetsrequest.py +3 -3
  30. mixpeek/models/{searchrequestfeatures_output.py → searchrequestfeatures.py} +11 -11
  31. mixpeek/models/security.py +2 -2
  32. mixpeek/models/{percolaterequest.py → taskresponse.py} +15 -17
  33. mixpeek/models/taskstatus.py +1 -0
  34. mixpeek/models/taxonomyextractionconfig.py +31 -0
  35. mixpeek/models/textsettings.py +10 -4
  36. mixpeek/models/vectormodel.py +4 -0
  37. mixpeek/models/videodescribesettings.py +6 -6
  38. mixpeek/models/videoreadsettings.py +6 -6
  39. mixpeek/models/videosettings.py +17 -3
  40. mixpeek/models/videotranscriptionsettings.py +6 -6
  41. mixpeek/namespaces.py +6 -6
  42. mixpeek/sdk.py +15 -11
  43. mixpeek/sdkconfiguration.py +4 -2
  44. mixpeek/tasks.py +4 -4
  45. mixpeek/utils/security.py +2 -2
  46. {mixpeek-0.14.0.dist-info → mixpeek-0.15.1.dist-info}/METADATA +12 -22
  47. {mixpeek-0.14.0.dist-info → mixpeek-0.15.1.dist-info}/RECORD +48 -58
  48. mixpeek/interactions.py +0 -228
  49. mixpeek/models/create_interaction_features_search_interactions_postop.py +0 -59
  50. mixpeek/models/db_model_taskresponse.py +0 -20
  51. mixpeek/models/delete_interaction_features_search_interactions_interaction_id_deleteop.py +0 -59
  52. mixpeek/models/get_interaction_features_search_interactions_interaction_id_getop.py +0 -59
  53. mixpeek/models/interactionresponse.py +0 -87
  54. mixpeek/models/interactiontype.py +0 -11
  55. mixpeek/models/list_interactions_features_search_interactions_getop.py +0 -96
  56. mixpeek/models/logicaloperator_output.py +0 -103
  57. mixpeek/models/searchinteraction.py +0 -82
  58. mixpeek/models/searchquery_output.py +0 -79
  59. mixpeek/models/searchrequestfeatures_input.py +0 -151
  60. mixpeek/models/tasks_model_taskresponse.py +0 -24
  61. mixpeek/searchinteractions.py +0 -666
  62. {mixpeek-0.14.0.dist-info → mixpeek-0.15.1.dist-info}/WHEEL +0 -0
@@ -2,6 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from .embeddingrequest import EmbeddingRequest, EmbeddingRequestTypedDict
5
+ from .entitysettings import EntitySettings, EntitySettingsTypedDict
5
6
  from .jsonvideooutputsettings import (
6
7
  JSONVideoOutputSettings,
7
8
  JSONVideoOutputSettingsTypedDict,
@@ -26,7 +27,7 @@ class VideoSettingsTypedDict(TypedDict):
26
27
  r"""Settings for reading and analyzing video content."""
27
28
  embed: NotRequired[List[EmbeddingRequestTypedDict]]
28
29
  r"""List of embedding settings for generating multiple embeddings. For now, if url is provided, value must be None.
29
- Default: [{type: 'url', vector_index: 'multimodal'}] if none provided.
30
+ Default: [{type: 'url', embedding_model: 'multimodal'}] if none provided.
30
31
  """
31
32
  transcribe: NotRequired[Nullable[VideoTranscriptionSettingsTypedDict]]
32
33
  r"""Settings for transcribing video audio."""
@@ -36,6 +37,8 @@ class VideoSettingsTypedDict(TypedDict):
36
37
  r"""Settings for object detection in video frames."""
37
38
  json_output: NotRequired[Nullable[JSONVideoOutputSettingsTypedDict]]
38
39
  r"""Settings for structured JSON output of video analysis."""
40
+ entities: NotRequired[Nullable[EntitySettingsTypedDict]]
41
+ r"""Settings for extracting entities from video content"""
39
42
 
40
43
 
41
44
  class VideoSettings(BaseModel):
@@ -47,7 +50,7 @@ class VideoSettings(BaseModel):
47
50
 
48
51
  embed: Optional[List[EmbeddingRequest]] = None
49
52
  r"""List of embedding settings for generating multiple embeddings. For now, if url is provided, value must be None.
50
- Default: [{type: 'url', vector_index: 'multimodal'}] if none provided.
53
+ Default: [{type: 'url', embedding_model: 'multimodal'}] if none provided.
51
54
  """
52
55
 
53
56
  transcribe: OptionalNullable[VideoTranscriptionSettings] = UNSET
@@ -62,6 +65,9 @@ class VideoSettings(BaseModel):
62
65
  json_output: OptionalNullable[JSONVideoOutputSettings] = UNSET
63
66
  r"""Settings for structured JSON output of video analysis."""
64
67
 
68
+ entities: OptionalNullable[EntitySettings] = UNSET
69
+ r"""Settings for extracting entities from video content"""
70
+
65
71
  @model_serializer(mode="wrap")
66
72
  def serialize_model(self, handler):
67
73
  optional_fields = [
@@ -72,8 +78,16 @@ class VideoSettings(BaseModel):
72
78
  "describe",
73
79
  "detect",
74
80
  "json_output",
81
+ "entities",
82
+ ]
83
+ nullable_fields = [
84
+ "read",
85
+ "transcribe",
86
+ "describe",
87
+ "detect",
88
+ "json_output",
89
+ "entities",
75
90
  ]
76
- nullable_fields = ["read", "transcribe", "describe", "detect", "json_output"]
77
91
  null_default_fields = []
78
92
 
79
93
  serialized = handler(self)
@@ -22,8 +22,8 @@ class VideoTranscriptionSettingsTypedDict(TypedDict):
22
22
  prompt: NotRequired[Nullable[str]]
23
23
  json_output: NotRequired[VideoTranscriptionSettingsJSONOutputTypedDict]
24
24
  r"""JSON format for the response"""
25
- vector_index: NotRequired[Nullable[VectorModel]]
26
- r"""Name of the vector model to use for embedding the text output. If vector_index is duplicated, the vector will be overwritten."""
25
+ embedding_model: NotRequired[Nullable[VectorModel]]
26
+ r"""Name of the vector model to use for embedding the text output. If embedding_model is duplicated, the vector will be overwritten."""
27
27
 
28
28
 
29
29
  class VideoTranscriptionSettings(BaseModel):
@@ -35,13 +35,13 @@ class VideoTranscriptionSettings(BaseModel):
35
35
  json_output: Optional[VideoTranscriptionSettingsJSONOutput] = None
36
36
  r"""JSON format for the response"""
37
37
 
38
- vector_index: OptionalNullable[VectorModel] = UNSET
39
- r"""Name of the vector model to use for embedding the text output. If vector_index is duplicated, the vector will be overwritten."""
38
+ embedding_model: OptionalNullable[VectorModel] = UNSET
39
+ r"""Name of the vector model to use for embedding the text output. If embedding_model is duplicated, the vector will be overwritten."""
40
40
 
41
41
  @model_serializer(mode="wrap")
42
42
  def serialize_model(self, handler):
43
- optional_fields = ["enabled", "prompt", "json_output", "vector_index"]
44
- nullable_fields = ["prompt", "vector_index"]
43
+ optional_fields = ["enabled", "prompt", "json_output", "embedding_model"]
44
+ nullable_fields = ["prompt", "embedding_model"]
45
45
  null_default_fields = []
46
46
 
47
47
  serialized = handler(self)
mixpeek/namespaces.py CHANGED
@@ -13,7 +13,7 @@ class Namespaces(BaseSDK):
13
13
  self,
14
14
  *,
15
15
  namespace_name: str,
16
- vector_indexes: List[str],
16
+ embedding_models: List[str],
17
17
  payload_indexes: OptionalNullable[
18
18
  Union[
19
19
  List[models.PayloadIndexConfig],
@@ -30,7 +30,7 @@ class Namespaces(BaseSDK):
30
30
  Creates a new namespace with the specified configuration
31
31
 
32
32
  :param namespace_name: Name of the namespace to create
33
- :param vector_indexes: List of vector indexes to be used within this namespace. Must be one of: 'image', 'multimodal', 'text', 'keyword'
33
+ :param embedding_models: List of vector indexes to be used within this namespace. Must be one of: 'image', 'openai-clip-vit-base-patch32', 'multimodal', 'vertex-multimodal', 'text', 'baai-bge-m3', 'keyword', 'naver-splade-v3'
34
34
  :param payload_indexes: List of payload index configurations
35
35
  :param retries: Override the default retry configuration for this method
36
36
  :param server_url: Override the default server URL for this method
@@ -47,7 +47,7 @@ class Namespaces(BaseSDK):
47
47
 
48
48
  request = models.CreateNamespaceRequest(
49
49
  namespace_name=namespace_name,
50
- vector_indexes=vector_indexes,
50
+ embedding_models=embedding_models,
51
51
  payload_indexes=utils.get_pydantic_model(
52
52
  payload_indexes, OptionalNullable[List[models.PayloadIndexConfig]]
53
53
  ),
@@ -123,7 +123,7 @@ class Namespaces(BaseSDK):
123
123
  self,
124
124
  *,
125
125
  namespace_name: str,
126
- vector_indexes: List[str],
126
+ embedding_models: List[str],
127
127
  payload_indexes: OptionalNullable[
128
128
  Union[
129
129
  List[models.PayloadIndexConfig],
@@ -140,7 +140,7 @@ class Namespaces(BaseSDK):
140
140
  Creates a new namespace with the specified configuration
141
141
 
142
142
  :param namespace_name: Name of the namespace to create
143
- :param vector_indexes: List of vector indexes to be used within this namespace. Must be one of: 'image', 'multimodal', 'text', 'keyword'
143
+ :param embedding_models: List of vector indexes to be used within this namespace. Must be one of: 'image', 'openai-clip-vit-base-patch32', 'multimodal', 'vertex-multimodal', 'text', 'baai-bge-m3', 'keyword', 'naver-splade-v3'
144
144
  :param payload_indexes: List of payload index configurations
145
145
  :param retries: Override the default retry configuration for this method
146
146
  :param server_url: Override the default server URL for this method
@@ -157,7 +157,7 @@ class Namespaces(BaseSDK):
157
157
 
158
158
  request = models.CreateNamespaceRequest(
159
159
  namespace_name=namespace_name,
160
- vector_indexes=vector_indexes,
160
+ embedding_models=embedding_models,
161
161
  payload_indexes=utils.get_pydantic_model(
162
162
  payload_indexes, OptionalNullable[List[models.PayloadIndexConfig]]
163
163
  ),
mixpeek/sdk.py CHANGED
@@ -14,10 +14,9 @@ from mixpeek.featureextractors import FeatureExtractors
14
14
  from mixpeek.features import Features
15
15
  from mixpeek.health import Health
16
16
  from mixpeek.ingest import Ingest
17
- from mixpeek.interactions import Interactions
17
+ from mixpeek.models import internal
18
18
  from mixpeek.namespaces import Namespaces
19
19
  from mixpeek.organizations import Organizations
20
- from mixpeek.searchinteractions import SearchInteractions
21
20
  from mixpeek.tasks import Tasks
22
21
  from mixpeek.types import OptionalNullable, UNSET
23
22
  from typing import Any, Callable, Dict, Optional, Union
@@ -29,8 +28,6 @@ class Mixpeek(BaseSDK):
29
28
  organizations: Organizations
30
29
  namespaces: Namespaces
31
30
  features: Features
32
- search_interactions: SearchInteractions
33
- interactions: Interactions
34
31
  feature_extractors: FeatureExtractors
35
32
  ingest: Ingest
36
33
  assets: Assets
@@ -40,7 +37,8 @@ class Mixpeek(BaseSDK):
40
37
 
41
38
  def __init__(
42
39
  self,
43
- bearer_auth: Optional[Union[Optional[str], Callable[[], Optional[str]]]] = None,
40
+ token: Optional[Union[Optional[str], Callable[[], Optional[str]]]] = None,
41
+ x_namespace: Optional[str] = None,
44
42
  server_idx: Optional[int] = None,
45
43
  server_url: Optional[str] = None,
46
44
  url_params: Optional[Dict[str, str]] = None,
@@ -52,7 +50,8 @@ class Mixpeek(BaseSDK):
52
50
  ) -> None:
53
51
  r"""Instantiates the SDK configuring it with the provided parameters.
54
52
 
55
- :param bearer_auth: The bearer_auth required for authentication
53
+ :param token: The token required for authentication
54
+ :param x_namespace: Configures the x_namespace parameter for all supported operations
56
55
  :param server_idx: The index of the server to use for all methods
57
56
  :param server_url: The server URL to use for all methods
58
57
  :param url_params: Parameters to optionally template the server URL with
@@ -79,20 +78,27 @@ class Mixpeek(BaseSDK):
79
78
  ), "The provided async_client must implement the AsyncHttpClient protocol."
80
79
 
81
80
  security: Any = None
82
- if callable(bearer_auth):
83
- security = lambda: models.Security(bearer_auth=bearer_auth()) # pylint: disable=unnecessary-lambda-assignment
81
+ if callable(token):
82
+ security = lambda: models.Security(token=token()) # pylint: disable=unnecessary-lambda-assignment
84
83
  else:
85
- security = models.Security(bearer_auth=bearer_auth)
84
+ security = models.Security(token=token)
86
85
 
87
86
  if server_url is not None:
88
87
  if url_params is not None:
89
88
  server_url = utils.template_url(server_url, url_params)
90
89
 
90
+ _globals = internal.Globals(
91
+ x_namespace=utils.get_global_from_env(
92
+ x_namespace, "MIXPEEK_X_NAMESPACE", str
93
+ ),
94
+ )
95
+
91
96
  BaseSDK.__init__(
92
97
  self,
93
98
  SDKConfiguration(
94
99
  client=client,
95
100
  async_client=async_client,
101
+ globals=_globals,
96
102
  security=security,
97
103
  server_url=server_url,
98
104
  server_idx=server_idx,
@@ -120,8 +126,6 @@ class Mixpeek(BaseSDK):
120
126
  self.organizations = Organizations(self.sdk_configuration)
121
127
  self.namespaces = Namespaces(self.sdk_configuration)
122
128
  self.features = Features(self.sdk_configuration)
123
- self.search_interactions = SearchInteractions(self.sdk_configuration)
124
- self.interactions = Interactions(self.sdk_configuration)
125
129
  self.feature_extractors = FeatureExtractors(self.sdk_configuration)
126
130
  self.ingest = Ingest(self.sdk_configuration)
127
131
  self.assets = Assets(self.sdk_configuration)
@@ -5,6 +5,7 @@ from .httpclient import AsyncHttpClient, HttpClient
5
5
  from .utils import Logger, RetryConfig, remove_suffix
6
6
  from dataclasses import dataclass
7
7
  from mixpeek import models
8
+ from mixpeek.models import internal
8
9
  from mixpeek.types import OptionalNullable, UNSET
9
10
  from pydantic import Field
10
11
  from typing import Callable, Dict, Optional, Tuple, Union
@@ -21,14 +22,15 @@ class SDKConfiguration:
21
22
  client: HttpClient
22
23
  async_client: AsyncHttpClient
23
24
  debug_logger: Logger
25
+ globals: internal.Globals
24
26
  security: Optional[Union[models.Security, Callable[[], models.Security]]] = None
25
27
  server_url: Optional[str] = ""
26
28
  server_idx: Optional[int] = 0
27
29
  language: str = "python"
28
30
  openapi_doc_version: str = "0.81"
29
- sdk_version: str = "0.14.0"
31
+ sdk_version: str = "0.15.1"
30
32
  gen_version: str = "2.484.0"
31
- user_agent: str = "speakeasy-sdk/python 0.14.0 2.484.0 0.81 mixpeek"
33
+ user_agent: str = "speakeasy-sdk/python 0.15.1 2.484.0 0.81 mixpeek"
32
34
  retry_config: OptionalNullable[RetryConfig] = Field(default_factory=lambda: UNSET)
33
35
  timeout_ms: Optional[int] = None
34
36
 
mixpeek/tasks.py CHANGED
@@ -208,7 +208,7 @@ class Tasks(BaseSDK):
208
208
  server_url: Optional[str] = None,
209
209
  timeout_ms: Optional[int] = None,
210
210
  http_headers: Optional[Mapping[str, str]] = None,
211
- ) -> models.TasksModelTaskResponse:
211
+ ) -> models.TaskResponse:
212
212
  r"""Get Task Information
213
213
 
214
214
  Retrieve a task by its ID.
@@ -275,7 +275,7 @@ class Tasks(BaseSDK):
275
275
 
276
276
  data: Any = None
277
277
  if utils.match_response(http_res, "200", "application/json"):
278
- return utils.unmarshal_json(http_res.text, models.TasksModelTaskResponse)
278
+ return utils.unmarshal_json(http_res.text, models.TaskResponse)
279
279
  if utils.match_response(
280
280
  http_res, ["400", "401", "403", "404", "500"], "application/json"
281
281
  ):
@@ -308,7 +308,7 @@ class Tasks(BaseSDK):
308
308
  server_url: Optional[str] = None,
309
309
  timeout_ms: Optional[int] = None,
310
310
  http_headers: Optional[Mapping[str, str]] = None,
311
- ) -> models.TasksModelTaskResponse:
311
+ ) -> models.TaskResponse:
312
312
  r"""Get Task Information
313
313
 
314
314
  Retrieve a task by its ID.
@@ -375,7 +375,7 @@ class Tasks(BaseSDK):
375
375
 
376
376
  data: Any = None
377
377
  if utils.match_response(http_res, "200", "application/json"):
378
- return utils.unmarshal_json(http_res.text, models.TasksModelTaskResponse)
378
+ return utils.unmarshal_json(http_res.text, models.TaskResponse)
379
379
  if utils.match_response(
380
380
  http_res, ["400", "401", "403", "404", "500"], "application/json"
381
381
  ):
mixpeek/utils/security.py CHANGED
@@ -64,8 +64,8 @@ def get_security_from_env(security: Any, security_class: Any) -> Optional[BaseMo
64
64
 
65
65
  security_dict: Any = {}
66
66
 
67
- if os.getenv("MIXPEEK_BEARER_AUTH"):
68
- security_dict["bearer_auth"] = os.getenv("MIXPEEK_BEARER_AUTH")
67
+ if os.getenv("MIXPEEK_TOKEN"):
68
+ security_dict["token"] = os.getenv("MIXPEEK_TOKEN")
69
69
 
70
70
  return security_class(**security_dict) if security_dict else None
71
71
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mixpeek
3
- Version: 0.14.0
3
+ Version: 0.15.1
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Home-page: https://github.com/mixpeek/python-sdk.git
6
6
  Author: Speakeasy
@@ -94,7 +94,7 @@ from mixpeek import Mixpeek
94
94
  import os
95
95
 
96
96
  with Mixpeek(
97
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
97
+ token=os.getenv("MIXPEEK_TOKEN", ""),
98
98
  ) as mixpeek:
99
99
 
100
100
  res = mixpeek.organizations.get()
@@ -114,7 +114,7 @@ import os
114
114
 
115
115
  async def main():
116
116
  async with Mixpeek(
117
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
117
+ token=os.getenv("MIXPEEK_TOKEN", ""),
118
118
  ) as mixpeek:
119
119
 
120
120
  res = await mixpeek.organizations.get_async()
@@ -133,17 +133,17 @@ asyncio.run(main())
133
133
 
134
134
  This SDK supports the following security scheme globally:
135
135
 
136
- | Name | Type | Scheme | Environment Variable |
137
- | ------------- | ---- | ----------- | --------------------- |
138
- | `bearer_auth` | http | HTTP Bearer | `MIXPEEK_BEARER_AUTH` |
136
+ | Name | Type | Scheme | Environment Variable |
137
+ | ------- | ---- | ----------- | -------------------- |
138
+ | `token` | http | HTTP Bearer | `MIXPEEK_TOKEN` |
139
139
 
140
- To authenticate with the API the `bearer_auth` parameter must be set when initializing the SDK client instance. For example:
140
+ To authenticate with the API the `token` parameter must be set when initializing the SDK client instance. For example:
141
141
  ```python
142
142
  from mixpeek import Mixpeek
143
143
  import os
144
144
 
145
145
  with Mixpeek(
146
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
146
+ token=os.getenv("MIXPEEK_TOKEN", ""),
147
147
  ) as mixpeek:
148
148
 
149
149
  res = mixpeek.organizations.get()
@@ -200,10 +200,6 @@ with Mixpeek(
200
200
  * [video_from_url](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md#video_from_url) - Ingest Video Url
201
201
  * [image_url](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md#image_url) - Ingest Image Url
202
202
 
203
- ### [interactions](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/interactions/README.md)
204
-
205
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/interactions/README.md#list) - List Interactions
206
-
207
203
 
208
204
  ### [namespaces](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md)
209
205
 
@@ -225,12 +221,6 @@ with Mixpeek(
225
221
  * [delete_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_api_key) - Delete Api Key
226
222
  * [update_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#update_api_key) - Update Api Key
227
223
 
228
- ### [search_interactions](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md)
229
-
230
- * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md#create) - Create Interaction
231
- * [get_interaction](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md#get_interaction) - Get Interaction
232
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md#delete) - Delete Interaction
233
-
234
224
  ### [tasks](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md)
235
225
 
236
226
  * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#delete) - Kill Task
@@ -251,7 +241,7 @@ from mixpeek.utils import BackoffStrategy, RetryConfig
251
241
  import os
252
242
 
253
243
  with Mixpeek(
254
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
244
+ token=os.getenv("MIXPEEK_TOKEN", ""),
255
245
  ) as mixpeek:
256
246
 
257
247
  res = mixpeek.organizations.get(,
@@ -270,7 +260,7 @@ import os
270
260
 
271
261
  with Mixpeek(
272
262
  retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
273
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
263
+ token=os.getenv("MIXPEEK_TOKEN", ""),
274
264
  ) as mixpeek:
275
265
 
276
266
  res = mixpeek.organizations.get()
@@ -310,7 +300,7 @@ from mixpeek import Mixpeek, models
310
300
  import os
311
301
 
312
302
  with Mixpeek(
313
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
303
+ token=os.getenv("MIXPEEK_TOKEN", ""),
314
304
  ) as mixpeek:
315
305
  res = None
316
306
  try:
@@ -344,7 +334,7 @@ import os
344
334
 
345
335
  with Mixpeek(
346
336
  server_url="https://api.mixpeek.com/",
347
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
337
+ token=os.getenv("MIXPEEK_TOKEN", ""),
348
338
  ) as mixpeek:
349
339
 
350
340
  res = mixpeek.organizations.get()
@@ -4,53 +4,50 @@ mixpeek/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,14
4
4
  mixpeek/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
5
5
  mixpeek/_hooks/sdkhooks.py,sha256=NMqSNr_PmeJuQgXFEntPJElH9a6yfdyvwEQFH0TrunI,2557
6
6
  mixpeek/_hooks/types.py,sha256=Qh9pO5ndynMrWpMLPkJUsOmAJ1AJHntJAXb5Yxe_a4o,2568
7
- mixpeek/_version.py,sha256=2uDSIFYmRDfo5SZ95N0fOJ5UpKgo-Tp7mPg6vnQGvM0,312
8
- mixpeek/assets.py,sha256=FxsU6meCiGYKWPwFWT_67UJO4XwSg1vgY2QMSyspNfA,68830
7
+ mixpeek/_version.py,sha256=1jzgduZzPr8xMg0OnthFlTlOx7gp0o7MuSjqtCjinKE,312
8
+ mixpeek/assets.py,sha256=W3rSdzE6JEk4jxzwLuPn6PykZIkZLJFc6-mjYrARFd4,68770
9
9
  mixpeek/basesdk.py,sha256=j_PZqE6WgIfx1cPCK5gAVn-rgPy9iLhUN5ELtefoEU0,11976
10
- mixpeek/collections.py,sha256=HXgrieJfXHmdG88t_no0A35Jt66X19hT0zUdGL49XiU,44367
11
- mixpeek/featureextractors.py,sha256=vhBNENPiR38RhBsqQqTyE-xpjw5RFaPGbowwRIFUcog,8686
12
- mixpeek/features.py,sha256=N-q-YJX9_lw3-jz-fb8_gVyRiyJaguITXv1xEs9Rdek,54022
10
+ mixpeek/collections.py,sha256=FfdUhYpSDMjA39AvSE-plHBUFlpGuxTzjwfa0ULhqhk,44431
11
+ mixpeek/featureextractors.py,sha256=PRZTqTv28r_VDfRQuRFvJDa9ymCmESL6ONOWTxK-Sv8,8710
12
+ mixpeek/features.py,sha256=NaxDMaUdhmmswZgeTHspTLAHNQ5nlbZ6U75TDC1n5GU,53888
13
13
  mixpeek/health.py,sha256=77BbCPfMkuuLSJdIG89lual5PhnT_LqXzFVQDKemEi0,6885
14
14
  mixpeek/httpclient.py,sha256=WDbLpMzo7qmWki_ryOJcCAYNI1T4uyWKV08rRuCdNII,2688
15
- mixpeek/ingest.py,sha256=x0FlcLe7QNIoDaTjh1RJ-4FRzt8KqzzFFUrhPUK763U,39594
16
- mixpeek/interactions.py,sha256=LlOUg8PvNkWulit4G9CFe6Rz1H4I4jeHI0p8_qjEY-g,9465
17
- mixpeek/models/__init__.py,sha256=GZlLWl-zo4kSoV7H3pR6vXxBmNk_E_D1aJGrFuRTcrc,27780
15
+ mixpeek/ingest.py,sha256=Z_zNN82UZlcMio5vJAheijTpf0eTmiimnYLCQVkrkzs,37338
16
+ mixpeek/models/__init__.py,sha256=sPdD4gffCTv9dFt3GQM0VAAUZP09tUHng-_JbL4P_G8,24542
18
17
  mixpeek/models/actionusage.py,sha256=WAnnBVTeQ9j0dtIrubfyyJQwbBamxManfS8fc2OFNyo,324
19
18
  mixpeek/models/apierror.py,sha256=9mTyJSyvUAOnSfW_1HWt9dGl8IDlpQ68DebwYsDNdug,528
20
19
  mixpeek/models/apikey.py,sha256=P99SWsu6wgc6HStE2MteANIGShUkM2dwQnbQvdg5AOc,654
21
20
  mixpeek/models/apikeyupdate.py,sha256=mSUkPR43JjWkZeSPyXHAo0KzWS79PWDGTsdpiNRoCBQ,1543
22
21
  mixpeek/models/assetfeatures.py,sha256=etqfjGnlrbI6fAp6OrM86jxP92X0MAeO3lKqUz3Pk5M,1907
23
- mixpeek/models/assetresponse.py,sha256=pn_OwYuHTdvix5pQAXz3vXif6hV3iM7b_NBxflPfR2c,5121
22
+ mixpeek/models/assetresponse.py,sha256=XR0gM7agzRnGIOqqPqrotZRg1hdN1o-rfW6x9-esE4g,5069
24
23
  mixpeek/models/assets_model_searchquery.py,sha256=F8TTe7lCD2IF_5ik-GwlvAR2437SBsWCI7IDipft904,664
25
24
  mixpeek/models/assetupdate.py,sha256=xVL49RVIsc7ytm0yVJ9xq1GcSykiswMiC8GeWnZMKB4,670
26
- mixpeek/models/availableindexesresponse.py,sha256=A-h88N7B_wbZ3fgDB-m-J0zN4Jq8MPMMGtA9CN_8-zk,762
27
- mixpeek/models/availablemodels.py,sha256=RWIXWxgDDPLlJhG5cNmTz8IVYfYIh_69Lo8Pxh6DT4g,278
25
+ mixpeek/models/availableindexesresponse.py,sha256=BXi-2clx-EYDooU7778sb0xA45mz8fpYetNSGTuHuog,766
26
+ mixpeek/models/availablemodels.py,sha256=0yVyFvJghvDTGgSrXRPzfkS9PQ7wO4e2cDXEBk151DA,496
28
27
  mixpeek/models/boolindexparams.py,sha256=bg7Hy6y9acpu7AxMpHTsYjEphDd0HnrqFPSgIDpgdZc,454
29
28
  mixpeek/models/collectionmodel.py,sha256=iCh87KQXyc2QPD12Dzr8OhhsqkflyLSAKrYSm00STEc,2163
30
29
  mixpeek/models/collectionresult.py,sha256=ijKOo_rtJKQnH6_EUfTnlhqlmz-c8HP3IF8dAeAlkik,2062
31
30
  mixpeek/models/create_api_key_organizations_users_user_email_api_keys_postop.py,sha256=PUV7GoERceacxhNoLVzVimM2ZyQpm1pkPUE4gSYOxI8,790
32
31
  mixpeek/models/create_collection_collections_postop.py,sha256=rVbri1rgnnXHgTKc8RwWwO_4HZos8yEkK4aRPKgS0zw,2383
33
- mixpeek/models/create_interaction_features_search_interactions_postop.py,sha256=JSSAHfS_tvTRZCNeXo2pXAKE-X-5v2-lFNDXu-EuEm8,2358
34
32
  mixpeek/models/createcollectionrequest.py,sha256=SrM6TNu1qqWWPwLC91e1X1NvmVUXzE0a5e5B1LIOzRQ,1787
35
- mixpeek/models/createnamespacerequest.py,sha256=sx_29pDal4YpERZdaoYsukI7rF_xlyj38n4rKoKhJaM,2209
33
+ mixpeek/models/createnamespacerequest.py,sha256=4xHtJibncj5N_8RG2LGBHTyWcDHOzLXW6ISHo9JZlG0,2387
36
34
  mixpeek/models/datetimeindexparams.py,sha256=i8SJBTEnWQEMOaOcN7Pt_Zptr6fxYJyO0Mx95-0EC68,468
37
35
  mixpeek/models/dateusage.py,sha256=SjrU7Wk9CirF48u01L8UUjMs9BbkJnhozTnmxkXYupA,541
38
36
  mixpeek/models/db_model_paginationresponse.py,sha256=1uY3GVZsfRXB5ZvnnwNdWnetVbmoPAgT6mYJCZs6H0c,1530
39
- mixpeek/models/db_model_taskresponse.py,sha256=FbkMnGIVBBtIG6ZfmqCXwL6KegXanhUs8OjGZWqO8oY,566
40
37
  mixpeek/models/delete_api_key_organizations_users_user_email_api_keys_key_name_deleteop.py,sha256=D1wp-HJ58CpRbPpZiD5e70TA9yC4emauYloo6RJLLlw,710
41
38
  mixpeek/models/delete_asset_assets_asset_id_deleteop.py,sha256=Bl8NR7_sBqSCLzMFoC0hLHBGtDk5ZfIfLXyKMb2HEyw,2182
42
39
  mixpeek/models/delete_collection_collections_collection_deleteop.py,sha256=ELWFh1EuKhetqFnRfxHEsjvqVROcWc1N1xMbFOmm-pI,2322
43
40
  mixpeek/models/delete_feature_features_feature_id_deleteop.py,sha256=9iF6_3-eOMOcBs7X_CN-9sRe0BVkxsqZdvtPPdKxvm8,2198
44
- mixpeek/models/delete_interaction_features_search_interactions_interaction_id_deleteop.py,sha256=D2mbnvW-e5peunqB2LEltxbwJu9JpfZspI65v76Zku8,2264
45
41
  mixpeek/models/delete_namespace_namespaces_namespace_deleteop.py,sha256=YPv31HssXwavKxUkYqDCNnRthTTIXdCw7fgECNJCTl4,638
46
42
  mixpeek/models/delete_user_organizations_users_user_email_deleteop.py,sha256=pwxa7t4vbF5ewzw346x5d0XskjAgZPOckNBM3ttpIhc,540
47
43
  mixpeek/models/denseembedding.py,sha256=ECX8Nwo6tD8Qm1WxGPGOy4H8WYLQ6q6VKqbnanT3vlA,413
48
- mixpeek/models/embeddingrequest.py,sha256=9Bk67IV1nr-d_UkTXkkL2e2o8Kv-YOHR0O3clHPGVHk,2092
44
+ mixpeek/models/embeddingrequest.py,sha256=Eh8YuPcdJpqqGRHBBw7COjIrxlpqfNrBqvp5HWZ-syY,2098
49
45
  mixpeek/models/embeddingresponse.py,sha256=1H6OWwIIO0ktqhmK0mIGdo3Bqv8saM7jFaFlljEZL1g,2223
46
+ mixpeek/models/entitysettings.py,sha256=L3v0AttBjp5Y75wOt1tYNgT9ij4wfJpA9XV6tFCq9yg,1684
50
47
  mixpeek/models/errordetail.py,sha256=j7QNqtNrAHjznF8F-eBuxwEedFhYIqP5YKOyX8dSlcg,1510
51
48
  mixpeek/models/errorresponse.py,sha256=YIbCFc44szh_OIUoQ3BByHWouYwa2Tqedm9NJcrNvyQ,582
52
49
  mixpeek/models/facedetectsettings.py,sha256=mU78KWd0x1Uy_8FqyWSWPPJcDbwFhxIcAc1RJeR8uL4,1710
53
- mixpeek/models/featureextractionembeddingrequest.py,sha256=fB2P7kPMKu1YSF9S8DgVlmdpcvxfcGsv4-Q8dlo64Jk,1764
50
+ mixpeek/models/featureextractionembeddingrequest.py,sha256=7aHPcCdd3PoYX2Ozznnf8jsvqqI5beycYgZ56djPLnE,1770
54
51
  mixpeek/models/featureresponse.py,sha256=eWsnn1FSccueE9UZOSxVOH_4IimfuKbbsS1bKNPvJhs,2521
55
52
  mixpeek/models/features_model_paginationresponse.py,sha256=LR3n2NawnOf5QjaWjfV_i6WDX-IxncVPA7nJxZPkySE,1558
56
53
  mixpeek/models/featureupdaterequest.py,sha256=z4OJi0SyHqQED4T1uV5CbDPipZm4-W1V345M-5AZY-E,495
@@ -63,7 +60,6 @@ mixpeek/models/get_asset_assets_asset_id_getop.py,sha256=OdRhQqEaEqYy9z9DinL0cD3
63
60
  mixpeek/models/get_asset_with_features_assets_asset_id_features_getop.py,sha256=C1T7fCAGLf8JX_Wl0Qt62-B3c2sWffsQ1SN9c6GUgQk,2848
64
61
  mixpeek/models/get_collection_collections_collection_getop.py,sha256=ampkmJucIAom90SyywkEKDhPWiECuHCBCRZAbf4lsbU,2310
65
62
  mixpeek/models/get_feature_features_feature_id_getop.py,sha256=Z8BZG9Hd41yOuHiuRIOOuPAIgG8JiD4iXLadSp7Srgc,2624
66
- mixpeek/models/get_interaction_features_search_interactions_interaction_id_getop.py,sha256=6SGNwT_cZoqzMW_q6zYR3ybNuEwN96W3ZM9jnOc_TWM,2252
67
63
  mixpeek/models/get_namespace_namespaces_namespace_getop.py,sha256=3WYuDkKMMlzpg55feRwWO1JQtPWfjFBU8Yv75pv_cXA,626
68
64
  mixpeek/models/get_task_tasks_task_id_getop.py,sha256=LgF0oJbUdxlWbCGu1SJCZleoZL7lJjM-GNCVksTcLfU,2162
69
65
  mixpeek/models/get_user_organizations_users_user_email_getop.py,sha256=kxtwC5C6a6ySF91ZdLtZP8V1n4RJBgIBUZMfOMfNsuM,528
@@ -72,17 +68,17 @@ mixpeek/models/groupbyoptionsasset.py,sha256=pTGoSfGsonefAoKO1yHcEboHdJNGTWUHqBm
72
68
  mixpeek/models/groupedassetdata.py,sha256=jezVBoyKu3muLIyeks5M3MqvJWBisQkkPGA1Jycbsrc,522
73
69
  mixpeek/models/healthcheckresponse.py,sha256=PK3C50wcUdZeLl6qfSYGBli2B3wPzCDTaLtSEtq4ZVY,305
74
70
  mixpeek/models/httpvalidationerror.py,sha256=sjKOM2oJR4c4Z24vHmyhtEfqaQeUdKZUMEclKu23OLc,600
75
- mixpeek/models/imagedescribesettings.py,sha256=9L6idUpZ_hZbtyL3iAeJrNhY2gvLGgrdyVhzLlOC9d4,2778
71
+ mixpeek/models/imagedescribesettings.py,sha256=ulaQrF4AgdbmkJL-TB098W8TzhS_iG7QymGA58oisyw,2796
76
72
  mixpeek/models/imagedetectsettings.py,sha256=isbyJubebMoiA1K8bEBu2yQvEBDZSiM_DoNrU3MLyDY,1846
77
- mixpeek/models/imagereadsettings.py,sha256=S91FPdh5sXqGTGFrzgiuKg7I91Yy8-Akpln4PYvaCDs,2477
78
- mixpeek/models/imagesettings.py,sha256=_nwD1gOcvCAczVbCdDPONoRHPRgAQTTQ_AHNvOTEZq0,3282
73
+ mixpeek/models/imagereadsettings.py,sha256=kGsvK00Wn6RIW7Qg2MJZ0IKYmeOVZJvyV695hBcVU6E,2495
74
+ mixpeek/models/imagesettings.py,sha256=2LSeuO-uIW82woZjXAdXRBz9KpgKVmOc6XV6YU8owZU,3706
79
75
  mixpeek/models/ingest_image_url_ingest_images_url_postop.py,sha256=LK-oCjXvmg434VUVGRbvcDzrigjBWaB2nQYHJIKLySw,2355
80
76
  mixpeek/models/ingest_text_ingest_text_postop.py,sha256=YFJXTmYz_XTQkjrs6Jhavjgx0XK09tg0355vM3wqUT0,2307
81
77
  mixpeek/models/ingest_video_url_ingest_videos_url_postop.py,sha256=ML93MDtKefeyUpV6gEo0pj173hAfSKN1bKYvHqjOA9M,2355
82
78
  mixpeek/models/inputtype.py,sha256=e71-3dFq8sWgy3Ue0P-gADus3j1MLWvdHETlwBU7HjM,234
83
79
  mixpeek/models/integerindexparams.py,sha256=r6nNOjihSSptcYwOdfrZTFRX_4bKWHbasGjEjdCLqM8,591
84
- mixpeek/models/interactionresponse.py,sha256=BC9Rj2phrop5JzVfYWZ3UgVtwzCvNifd0j2SlhdWBhc,2926
85
- mixpeek/models/interactiontype.py,sha256=7-cshgqKl-RQacmaubjuUJ6Lhqy2SL5QIKgmQUtpKWs,292
80
+ mixpeek/models/internal/__init__.py,sha256=UeANM6ipWP5CqyMd3Yhr6UbpvAabXdSYf_GtHdZ0-BI,163
81
+ mixpeek/models/internal/globals.py,sha256=7PIqZPXMkyWKGGhRqEtmZiESK7Cbo-9dQjCjTi8yL1s,979
86
82
  mixpeek/models/jsonimageoutputsettings.py,sha256=edd5mFi9AmKSpHTCNiP0huzu3_9_IVIN_3LqdXoQS94,1716
87
83
  mixpeek/models/jsontextoutputsettings.py,sha256=EGbFfuSFSXQO6A3_Gkj58qPVsEU5NE55dxMUcvK_CHk,1622
88
84
  mixpeek/models/jsonvideooutputsettings.py,sha256=7kf0tJM2Go-rWBIbp9yWJYv2RFesQvOjPsE3p-DeA9I,1716
@@ -91,45 +87,40 @@ mixpeek/models/kill_task_tasks_task_id_deleteop.py,sha256=Tm_sGFE405_DhJmbJtzF6-
91
87
  mixpeek/models/list_assets_assets_postop.py,sha256=h8IbWuoA7OuYEigl8hw3KQwNh2kRaslkr-cSvxL1sJ4,2755
92
88
  mixpeek/models/list_collections_collections_getop.py,sha256=nAjP6zruOpMwB7E1uKqxQM-ZlBcZoA3Ku5Qb8mxNbio,2457
93
89
  mixpeek/models/list_features_features_postop.py,sha256=ZwpcwTVpHeNn-W_f0fpq3F9pzLQhseDX-vjLzmm1LNc,2985
94
- mixpeek/models/list_interactions_features_search_interactions_getop.py,sha256=f19dh4DnrGTdTORoegZDu97wsAkA4A2xdldqUW8bHDM,3330
95
- mixpeek/models/listassetsrequest.py,sha256=LGMRSMXIv6Q0rAlQ2jCK-KvAJBT8Tvgud_w6_g_c6Lo,3184
90
+ mixpeek/models/listassetsrequest.py,sha256=Bx3cnpzpJCKcyBcrXF5jZ8lm59dTfjznq1xA_0DiaO0,3158
96
91
  mixpeek/models/listassetsresponse.py,sha256=do19qdQCmrAtt5bc99J-4Hx4VzC5yb1WqgkAjvepp5E,645
97
92
  mixpeek/models/listcollectionsresponse.py,sha256=QRDk1-yg21sbRFUrH9lfqvA7q8Ex517C5UbsI5w1lQY,670
98
- mixpeek/models/listfeaturesrequest.py,sha256=NqP0jOsbIXlwgdxczy6R6yVAGOslmEwQwz2fiNwBs_w,2856
93
+ mixpeek/models/listfeaturesrequest.py,sha256=b0hUacli5s9E0W-jeboYLJrQyHMmetd7VyIZh1_gSTc,2830
99
94
  mixpeek/models/listfeaturesresponse.py,sha256=5bGne8MktUoJnqyo2uWTg1nJQmFLNRTS8TX1HYcGvhQ,689
100
- mixpeek/models/logicaloperator_input.py,sha256=9qz8VZJEKBd1lj8BiBDJw_iqytSwtCS_8VrBQYucVhE,2864
101
- mixpeek/models/logicaloperator_output.py,sha256=wJLJshx5N0brYqFmsHknK1pIlVkILUDZQD_J0GK_uBI,3325
95
+ mixpeek/models/logicaloperator.py,sha256=-YpC_qxzBHcjS71TsoVCEI9OvePL56Fx6Q_lpUaZipg,2824
102
96
  mixpeek/models/logodetectsettings.py,sha256=f_xvsILMrlbhS4raufxc7iNaONqEvWWTj7_OOIr4BTM,1706
103
97
  mixpeek/models/modality.py,sha256=qITDsYEVP7vf1PiekTD6F0cRGn8HZaoHhPmn-C8ksmQ,291
104
98
  mixpeek/models/modeldetails.py,sha256=bKbvqkQPBiGqvCJFQFpozjept0gpNe-Pz0y8xjhzia8,1593
105
- mixpeek/models/namespaceresponse.py,sha256=w9ndVRODVaXkRdGPpAwEzH61PDCl5taRpoy0frtTlTU,1502
99
+ mixpeek/models/namespaceresponse.py,sha256=nbUCsc-8IMnJPn5rQO1jwODMgfly_KPz6pqg8b2udnk,1506
106
100
  mixpeek/models/organizationmodel.py,sha256=nkTGqZdVoNiwy-OIWbgRZpkxOnwjvtG29r8Y3NaIDco,1204
107
101
  mixpeek/models/partial_asset_update_assets_asset_id_patchop.py,sha256=vx2sEynihGrgDI2iUmotaZ1Gik98LR7dOBrp6ZqEbek,2517
108
102
  mixpeek/models/payloadindexconfig.py,sha256=ik0jF70xJaA4K1PcQbt9gzxPu1FW_K0OUkta4SUugK0,2932
109
103
  mixpeek/models/payloadindextype.py,sha256=1Lw8LccITIMG8KVRmsXHtmTPA8hNKwY4fBtM00Nnkmg,393
110
104
  mixpeek/models/payloadschematype.py,sha256=DOhqg4XSdyx5ZT-1udYBcZ6PyhG48hiQ-gOtkrdbE40,332
111
- mixpeek/models/percolaterequest.py,sha256=cP9vngiUDgCEY3Q4ThG6ix1odl30qF71jtKZwPYC_ew,2096
112
105
  mixpeek/models/permission.py,sha256=kigROL8wrQX7zMk4co15wIrRF8Xpzxjdh05LLLwqeko,219
113
- mixpeek/models/processimageurlinput.py,sha256=xWyhpXDq6kWnlQrvuVfGKeXJoxKobkFBtVieGCwjsrM,4630
114
- mixpeek/models/processtextinput.py,sha256=1llb4P8JmnO_oUDiZfXOpluLbkRpqfAJoMauGs2YJSA,3990
115
- mixpeek/models/processvideourlinput.py,sha256=Ytq4awE5Ln6Z3kCz9krrsogbQ-vmL50lnxNxrgS5VlM,4646
106
+ mixpeek/models/processimageurlinput.py,sha256=-qVpxxIO0gLs1_po7Ngcp56a9Yegbo_OmA-vsrUJyfI,4196
107
+ mixpeek/models/processtextinput.py,sha256=2pvb9UDEPj00VVDeN-SLe-ZoKWBWv8VtHJJp9Mx4G9Q,3556
108
+ mixpeek/models/processvideourlinput.py,sha256=ITjmYETQZjVNGGMnB0eFj12qs5m6fiwm5-Wqd8XsQd8,4212
116
109
  mixpeek/models/querysettings.py,sha256=uz35cHBuqmXYZbXl1Jm0vLA_-v4o2cZdy_lvX2fjnCs,2146
117
110
  mixpeek/models/rerankingoptions.py,sha256=ZtaBvVODYwWjEbiosB_mNhn2HuMYF9sPrt4P-xb85wU,1560
118
111
  mixpeek/models/search_assets_assets_search_postop.py,sha256=r21HsjXCdn5O2T72yuF2uPWdk6vB5S1xbvhjycnJWng,2336
119
- mixpeek/models/search_features_features_search_postop.py,sha256=rGgqNUpn4JSPgyXuaAWctI7MqZhXAm7Iqgobdp2jkKc,3481
120
- mixpeek/models/search_model_searchquery_input.py,sha256=LtsufOh2AWOXGI9GZQfCm3VXBye27lLhY4N1sQfl8UA,2568
121
- mixpeek/models/searchassetsrequest.py,sha256=MvBBhGjbDSc99PW72_0l8W97bdprPDXmzp_hpE4zDkk,3024
122
- mixpeek/models/searchinteraction.py,sha256=2X7aVM6Uoknv6mU1rZlUV9oUmDD1rTkDTXCY7W8FWxc,2692
123
- mixpeek/models/searchquery_output.py,sha256=c7Ar09TanSqoLfLl-PeLcSCXpwUW9G-dm_TS8xPrhPw,2617
124
- mixpeek/models/searchrequestfeatures_input.py,sha256=kQE7EPFU3yYXJ6kX2VB7Rz9_Y7eFzgkfooKeFxZvxmA,5769
125
- mixpeek/models/searchrequestfeatures_output.py,sha256=s044mekxr7OF68sco7OvRALMt-w6scwbGHIm12wtVXs,5724
126
- mixpeek/models/security.py,sha256=KndEoU3C-m7MnQHfXap3lvs4Qp_46e4O-0bzjYcJlx0,690
112
+ mixpeek/models/search_features_features_search_postop.py,sha256=XGtaq779xq3cbM506xNaOdVtPsbn-Kgzc_L2b4OPqUM,3430
113
+ mixpeek/models/search_model_searchquery.py,sha256=Pz4li1PB4GWWtwoa7IElJZQKE5v1xxjumGIES6ioVCw,2538
114
+ mixpeek/models/searchassetsrequest.py,sha256=ikLw6_K9xBF_bSuzrr6-lEIKLYlfmxC9-U_gr_xZf8A,2998
115
+ mixpeek/models/searchrequestfeatures.py,sha256=AS5GPy2I8AXiEwA-o91f_0dnMmS3XKG6Su8VmBfrBFY,5707
116
+ mixpeek/models/security.py,sha256=BmBA5yNcaMUKWsJGJtBdZvO1drfqEjAnN4nDs-IOKm4,678
127
117
  mixpeek/models/sortoption.py,sha256=3_cJW0A9vt8INQowzJ_kZtmYT1mlBNy-__f-tvLiC3Q,639
128
118
  mixpeek/models/sparseembedding.py,sha256=-nXJSRELVSQqTyXAPYA4swPKBscLdljq9vH4N91Yz7A,530
129
- mixpeek/models/tasks_model_taskresponse.py,sha256=oyO5jpGPk9UEDS-gyZ6VGqjZrLUcYto_ODMzwvT_Z8o,516
130
- mixpeek/models/taskstatus.py,sha256=S7JzEJvOliepXpV49bFKV37Txrh0Vqcr-cmJopm-NYA,399
119
+ mixpeek/models/taskresponse.py,sha256=_m1dqkl9TqL3DDw8OaFxO-iae8FRbGUrjF3Ed87OdBE,1670
120
+ mixpeek/models/taskstatus.py,sha256=QdRjtkiWROdM9GmWNs0U1rGbX2Nvek3OG-_Ay5D9cSI,423
121
+ mixpeek/models/taxonomyextractionconfig.py,sha256=sTi8qWOX00XeXDIfaRyozr_Cz6rZRCT3LP_tbrMm6us,1122
131
122
  mixpeek/models/textindexparams.py,sha256=_E7_Rfb9g-3w8im3DPcOJF7zWIR9g_Q57_ZtTW3Rs98,798
132
- mixpeek/models/textsettings.py,sha256=96rTGeEetcfMSvAHBLd_fqeSbpUrZPfrmrJON0QKXA8,2415
123
+ mixpeek/models/textsettings.py,sha256=PHj3hWRSLCOk3MomjAc_fiQ8Y9e1r_qdqYysgef1RMA,2754
133
124
  mixpeek/models/tokenizertype.py,sha256=anZ-d0-akzNjteTTGJmUUlhzZOglV_h3mz8rYVfUQzk,268
134
125
  mixpeek/models/update_api_key_organizations_users_user_email_api_keys_key_name_patchop.py,sha256=bX9KA7374ooaqxh26e2RyhT5xwagYg7Abuz9qcToDvs,968
135
126
  mixpeek/models/update_collection_collections_collection_putop.py,sha256=vVZfd_nPXOzhEjEjN0i-Ca4N68oOegTsdztPmx5YZFI,2687
@@ -141,20 +132,19 @@ mixpeek/models/usermodel_input.py,sha256=MfBJ_huhtCyiRQDLOySSjUEssmgMk0wE0dVxJyv
141
132
  mixpeek/models/usermodel_output.py,sha256=uEngREhhuEiAGq4Aid0sQUAoI_0I2Bw5AKq3Fz2IYF4,887
142
133
  mixpeek/models/uuidindexparams.py,sha256=2vR4nn9tJ5UeCKlpvUraBiLKIWSzgiErcrweV2Dsnpo,520
143
134
  mixpeek/models/validationerror.py,sha256=g2zeZtOeoeEIsftPV67bjp5kqiIqBmM1hu7s3psh-Mc,524
144
- mixpeek/models/vectormodel.py,sha256=Aegef7zMech1d7z5TFpMvANH1ZeDmSKBXC-nVmcxpVk,254
135
+ mixpeek/models/vectormodel.py,sha256=x-nWHCbDrU20Rhd1OfddZ_3ddbI6FgyPAp3nI1thdxQ,436
145
136
  mixpeek/models/vectortype.py,sha256=ZIeRoKRmNCojOWTNgco4a2ZYAmcsizA9OyRARzGhYjE,203
146
- mixpeek/models/videodescribesettings.py,sha256=bkr8jey5oK5KgpFvd6cMRvoCiMrJKffQ-RaRBqCHWpM,2778
137
+ mixpeek/models/videodescribesettings.py,sha256=_99zl9xc_c3KWU5sm61FeSq2qRpQff2a7zrpr5z5plo,2796
147
138
  mixpeek/models/videodetectsettings.py,sha256=3l8pOw2USpDQIyPX27yStSPkrgLADPY9wHdsgtCYBMw,1846
148
- mixpeek/models/videoreadsettings.py,sha256=3ZmqiQk_SRrylAMHX30PtJuUqgu_u5AwbZEOwfyZ4mM,2409
149
- mixpeek/models/videosettings.py,sha256=bQe2vWYyaT0DSyELL49XqrcJIPyD0g8JgBaG7McOwSA,4094
150
- mixpeek/models/videotranscriptionsettings.py,sha256=eIrlsSw5AUA9uE98bXvfIoitK5nu6ppq7412YQWQqtk,2453
151
- mixpeek/namespaces.py,sha256=V4GZu9ueay3bw_Rlofo0figPDUPfML4XAZudRmYtEjQ,48214
139
+ mixpeek/models/videoreadsettings.py,sha256=qFtWMM2XXZwlPgB4L-a3fQ3koxDLNtWOcGSkp7FPNdw,2427
140
+ mixpeek/models/videosettings.py,sha256=sNww8ZgmL4O4pp3wTgp76ZNzA6mC9NtOD2p-sC72pbM,4530
141
+ mixpeek/models/videotranscriptionsettings.py,sha256=70EN-PX2QiQAQjDLYaV2coUCnVjRJI2Y1pXNQYUBH2g,2471
142
+ mixpeek/namespaces.py,sha256=yKQe07-fByLg7wAu7Wx6EslvewruqJOEQg7H95MRGjg,48404
152
143
  mixpeek/organizations.py,sha256=JcnABmWBzvQn8uto9XlNg_NsbzKkFUr3RJoloTY_aXQ,62467
153
144
  mixpeek/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
154
- mixpeek/sdk.py,sha256=h1kSnRLMyKciHehOXJHSPrGDv1b7quk_CuR-HglPwMM,5617
155
- mixpeek/sdkconfiguration.py,sha256=GQbUnA-vkjh_U-6Q4s3_F6yN1bWj-h01AZjiP0xtNS0,1535
156
- mixpeek/searchinteractions.py,sha256=g-0QxU0Wi_IaMvT6n7OM2Cryr_vtQZzZ3HZpBl6AG0I,28152
157
- mixpeek/tasks.py,sha256=lvDpvaP_vIpYltWWuXxeAZtOJXC68Sroh9OgYIT6u5A,16532
145
+ mixpeek/sdk.py,sha256=O3k3PgMVrIbHxRPtRPa_LQG7Y724JbXNiNJfxXdXBoM,5624
146
+ mixpeek/sdkconfiguration.py,sha256=Hd3YfyUsjWtlFzF1k7z-Wh9dvIafSz-r39w2VRqEOEw,1601
147
+ mixpeek/tasks.py,sha256=y6g77Qzp0FpPeEFGoLGo7apfxFdyQIEJR5b0WzFMM5M,16492
158
148
  mixpeek/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
159
149
  mixpeek/types/basemodel.py,sha256=PexI39iKiOkIlobB8Ueo0yn8PLHp6_wb-WO-zelNDZY,1170
160
150
  mixpeek/utils/__init__.py,sha256=8npwwHS-7zjVrbkzBGO-Uk4GkjC240PCleMbgPK1Axs,2418
@@ -168,10 +158,10 @@ mixpeek/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,313
168
158
  mixpeek/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEtI,5899
169
159
  mixpeek/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
170
160
  mixpeek/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
171
- mixpeek/utils/security.py,sha256=3mF13Je002bp6DvX_HTNiw9maMpX-8EY_Eb2s9SYO0U,6020
161
+ mixpeek/utils/security.py,sha256=XoK-R2YMyZtVWQte7FoezfGJS-dea9jz4qQ7w5dwNWc,6002
172
162
  mixpeek/utils/serializers.py,sha256=BSJT7kBOkNBFyP7KREyMoe14JGbgijD1M6AXFMbdmco,4924
173
163
  mixpeek/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
174
164
  mixpeek/utils/values.py,sha256=_89YXPTI_BU6SXJBzFR4pIzTCBPQW9tsOTN1jeBBIDs,3428
175
- mixpeek-0.14.0.dist-info/METADATA,sha256=Rh1V10nKcCBhckJXfM0ZLcQAdYMm29xRwU2LUubAQNk,19744
176
- mixpeek-0.14.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
177
- mixpeek-0.14.0.dist-info/RECORD,,
165
+ mixpeek-0.15.1.dist-info/METADATA,sha256=bHyGarhkqnYEAcp77lfC-P__NRivgMFaJqeeFOeWN9c,18890
166
+ mixpeek-0.15.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
167
+ mixpeek-0.15.1.dist-info/RECORD,,