mixpeek 0.15.2__py3-none-any.whl → 0.16.0__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/_hooks/__init__.py +0 -1
- mixpeek/_hooks/sdkhooks.py +0 -2
- mixpeek/_version.py +1 -1
- mixpeek/assets.py +74 -56
- mixpeek/collections.py +46 -40
- mixpeek/{featureextractors.py → feature_extractors.py} +6 -6
- mixpeek/feature_search.py +330 -0
- mixpeek/features.py +44 -356
- mixpeek/health.py +3 -15
- mixpeek/{ingest.py → ingest_assets.py} +43 -25
- mixpeek/models/__init__.py +291 -160
- mixpeek/models/assignmentconfig.py +25 -0
- mixpeek/models/availablemodels.py +2 -1
- mixpeek/models/{availableindexesresponse.py → availablemodelsresponse.py} +8 -4
- mixpeek/models/classificationmatch.py +72 -0
- mixpeek/models/classificationwithfeature.py +73 -0
- mixpeek/models/classify_features_v1_entities_taxonomies_taxonomy_classify_postop.py +73 -0
- mixpeek/models/{create_api_key_organizations_users_user_email_api_keys_postop.py → create_api_key_v1_organizations_users_user_email_api_keys_postop.py} +2 -2
- mixpeek/models/{create_collection_collections_postop.py → create_collection_v1_collections_postop.py} +2 -2
- mixpeek/models/create_taxonomy_v1_entities_taxonomies_postop.py +59 -0
- mixpeek/models/createnamespacerequest.py +2 -2
- mixpeek/models/{delete_api_key_organizations_users_user_email_api_keys_key_name_deleteop.py → delete_api_key_v1_organizations_users_user_email_api_keys_key_name_deleteop.py} +2 -2
- mixpeek/models/{delete_asset_assets_asset_id_deleteop.py → delete_asset_v1_assets_asset_id_deleteop.py} +2 -2
- mixpeek/models/delete_classifications_v1_entities_taxonomies_taxonomy_classifications_classification_id_deleteop.py +70 -0
- mixpeek/models/{delete_collection_collections_collection_deleteop.py → delete_collection_v1_collections_collection_deleteop.py} +2 -2
- mixpeek/models/{delete_feature_features_feature_id_deleteop.py → delete_feature_v1_features_feature_id_deleteop.py} +2 -2
- mixpeek/models/{delete_namespace_namespaces_namespace_deleteop.py → delete_namespace_v1_namespaces_namespace_deleteop.py} +2 -2
- mixpeek/models/delete_taxonomy_v1_entities_taxonomies_taxonomy_deleteop.py +59 -0
- mixpeek/models/{delete_user_organizations_users_user_email_deleteop.py → delete_user_v1_organizations_users_user_email_deleteop.py} +2 -2
- mixpeek/models/discoverrequest.py +74 -0
- mixpeek/models/embeddingconfig.py +33 -0
- mixpeek/models/embeddingrequest.py +40 -7
- mixpeek/models/featureoptions.py +25 -0
- mixpeek/models/{full_asset_update_assets_asset_id_putop.py → full_asset_update_v1_assets_asset_id_putop.py} +2 -2
- mixpeek/models/{full_feature_update_features_feature_id_putop.py → full_feature_update_v1_features_feature_id_putop.py} +2 -2
- mixpeek/models/genericsuccessresponse.py +17 -0
- mixpeek/models/{get_asset_assets_asset_id_getop.py → get_asset_v1_assets_asset_id_getop.py} +2 -2
- mixpeek/models/{get_asset_with_features_assets_asset_id_features_getop.py → get_asset_with_features_v1_assets_asset_id_features_getop.py} +2 -2
- mixpeek/models/{get_collection_collections_collection_getop.py → get_collection_v1_collections_collection_getop.py} +2 -2
- mixpeek/models/{get_feature_features_feature_id_getop.py → get_feature_v1_features_feature_id_getop.py} +2 -2
- mixpeek/models/{get_namespace_namespaces_namespace_getop.py → get_namespace_v1_namespaces_namespace_getop.py} +2 -2
- mixpeek/models/{get_task_tasks_task_id_getop.py → get_task_v1_tasks_task_id_getop.py} +2 -2
- mixpeek/models/get_taxonomy_node_v1_entities_taxonomies_nodes_node_getop.py +59 -0
- mixpeek/models/get_taxonomy_v1_entities_taxonomies_taxonomy_getop.py +59 -0
- mixpeek/models/{get_user_organizations_users_user_email_getop.py → get_user_v1_organizations_users_user_email_getop.py} +2 -2
- mixpeek/models/{ingest_image_url_ingest_images_url_postop.py → ingest_image_url_v1_ingest_images_url_postop.py} +2 -2
- mixpeek/models/{ingest_text_ingest_text_postop.py → ingest_text_v1_ingest_text_postop.py} +2 -2
- mixpeek/models/{ingest_video_url_ingest_videos_url_postop.py → ingest_video_url_v1_ingest_videos_url_postop.py} +2 -2
- mixpeek/models/{kill_task_tasks_task_id_deleteop.py → kill_task_v1_tasks_task_id_deleteop.py} +2 -2
- mixpeek/models/{list_assets_assets_postop.py → list_assets_v1_assets_postop.py} +2 -2
- mixpeek/models/list_classifications_v1_entities_taxonomies_taxonomy_classifications_postop.py +92 -0
- mixpeek/models/{list_collections_collections_getop.py → list_collections_v1_collections_getop.py} +2 -2
- mixpeek/models/{list_features_features_postop.py → list_features_v1_features_postop.py} +2 -2
- mixpeek/models/list_taxonomies_v1_entities_taxonomies_getop.py +67 -0
- mixpeek/models/listclassificationsrequest.py +69 -0
- mixpeek/models/listclassificationsresponse.py +31 -0
- mixpeek/models/listtaxonomiesresponse.py +24 -0
- mixpeek/models/modeldetails.py +9 -5
- mixpeek/models/nodeoptions.py +16 -0
- mixpeek/models/nodeupdate.py +51 -0
- mixpeek/models/{partial_asset_update_assets_asset_id_patchop.py → partial_asset_update_v1_assets_asset_id_patchop.py} +2 -2
- mixpeek/models/permission.py +12 -0
- mixpeek/models/{search_assets_assets_search_postop.py → search_assets_v1_assets_search_postop.py} +2 -2
- mixpeek/models/{search_features_features_search_postop.py → search_features_v1_features_search_postop.py} +4 -4
- mixpeek/models/taxonomycreate.py +20 -0
- mixpeek/models/taxonomymodel.py +27 -0
- mixpeek/models/taxonomynode.py +101 -0
- mixpeek/models/taxonomynodecreate.py +63 -0
- mixpeek/models/taxonomyupdate.py +55 -0
- mixpeek/models/{update_api_key_organizations_users_user_email_api_keys_key_name_patchop.py → update_api_key_v1_organizations_users_user_email_api_keys_key_name_patchop.py} +2 -2
- mixpeek/models/{update_collection_collections_collection_putop.py → update_collection_v1_collections_collection_putop.py} +2 -2
- mixpeek/models/{update_namespace_namespaces_namespace_putop.py → update_namespace_v1_namespaces_namespace_putop.py} +2 -2
- mixpeek/models/update_node_v1_entities_taxonomies_nodes_node_patchop.py +71 -0
- mixpeek/models/update_taxonomy_v1_entities_taxonomies_taxonomy_patchop.py +71 -0
- mixpeek/models/vectormodel.py +1 -0
- mixpeek/namespaces.py +52 -52
- mixpeek/organizations.py +82 -58
- mixpeek/sdk.py +12 -6
- mixpeek/sdkconfiguration.py +4 -4
- mixpeek/tasks.py +22 -16
- mixpeek/taxonomy_entities.py +2214 -0
- {mixpeek-0.15.2.dist-info → mixpeek-0.16.0.dist-info}/METADATA +64 -49
- {mixpeek-0.15.2.dist-info → mixpeek-0.16.0.dist-info}/RECORD +84 -55
- {mixpeek-0.15.2.dist-info → mixpeek-0.16.0.dist-info}/WHEEL +1 -1
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: mixpeek
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.16.0
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
5
5
|
Home-page: https://github.com/mixpeek/python-sdk.git
|
6
6
|
Author: Speakeasy
|
@@ -11,7 +11,6 @@ Classifier: Programming Language :: Python :: 3.9
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.10
|
12
12
|
Classifier: Programming Language :: Python :: 3.11
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
14
|
-
Classifier: Programming Language :: Python :: 3.13
|
15
14
|
Requires-Dist: eval-type-backport (>=0.2.0,<0.3.0)
|
16
15
|
Requires-Dist: httpx (>=0.28.1,<0.29.0)
|
17
16
|
Requires-Dist: jsonpath-python (>=1.0.6,<2.0.0)
|
@@ -97,7 +96,7 @@ with Mixpeek(
|
|
97
96
|
token=os.getenv("MIXPEEK_TOKEN", ""),
|
98
97
|
) as mixpeek:
|
99
98
|
|
100
|
-
res = mixpeek.
|
99
|
+
res = mixpeek.health.check()
|
101
100
|
|
102
101
|
# Handle response
|
103
102
|
print(res)
|
@@ -117,7 +116,7 @@ async def main():
|
|
117
116
|
token=os.getenv("MIXPEEK_TOKEN", ""),
|
118
117
|
) as mixpeek:
|
119
118
|
|
120
|
-
res = await mixpeek.
|
119
|
+
res = await mixpeek.health.check_async()
|
121
120
|
|
122
121
|
# Handle response
|
123
122
|
print(res)
|
@@ -146,7 +145,7 @@ with Mixpeek(
|
|
146
145
|
token=os.getenv("MIXPEEK_TOKEN", ""),
|
147
146
|
) as mixpeek:
|
148
147
|
|
149
|
-
res = mixpeek.
|
148
|
+
res = mixpeek.health.check()
|
150
149
|
|
151
150
|
# Handle response
|
152
151
|
print(res)
|
@@ -162,69 +161,85 @@ with Mixpeek(
|
|
162
161
|
|
163
162
|
### [assets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md)
|
164
163
|
|
165
|
-
* [
|
166
|
-
* [
|
167
|
-
* [
|
168
|
-
* [
|
169
|
-
* [
|
170
|
-
* [
|
171
|
-
* [
|
164
|
+
* [get_asset_v1_assets_asset_id_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#get_asset_v1_assets_asset_id_get) - Get Asset
|
165
|
+
* [delete_asset_v1_assets_asset_id_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#delete_asset_v1_assets_asset_id_delete) - Delete Asset
|
166
|
+
* [full_asset_update_v1_assets_asset_id_put](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#full_asset_update_v1_assets_asset_id_put) - Full Asset Update
|
167
|
+
* [partial_asset_update_v1_assets_asset_id_patch](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#partial_asset_update_v1_assets_asset_id_patch) - Partial Asset Update
|
168
|
+
* [get_asset_with_features_v1_assets_asset_id_features_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#get_asset_with_features_v1_assets_asset_id_features_get) - Get Asset With Features
|
169
|
+
* [list_assets_v1_assets_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#list_assets_v1_assets_post) - List Assets
|
170
|
+
* [search_assets_v1_assets_search_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#search_assets_v1_assets_search_post) - Search Assets
|
172
171
|
|
173
172
|
### [collections](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md)
|
174
173
|
|
175
|
-
* [
|
176
|
-
* [
|
177
|
-
* [
|
178
|
-
* [
|
179
|
-
* [
|
174
|
+
* [list_collections_v1_collections_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#list_collections_v1_collections_get) - List Collections
|
175
|
+
* [create_collection_v1_collections_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#create_collection_v1_collections_post) - Create Collection
|
176
|
+
* [delete_collection_v1_collections_collection_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#delete_collection_v1_collections_collection_delete) - Delete Collection
|
177
|
+
* [update_collection_v1_collections_collection_put](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#update_collection_v1_collections_collection_put) - Update Collection
|
178
|
+
* [get_collection_v1_collections_collection_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#get_collection_v1_collections_collection_get) - Get Collection
|
180
179
|
|
181
180
|
### [feature_extractors](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featureextractors/README.md)
|
182
181
|
|
183
|
-
* [
|
182
|
+
* [extract_embeddings_v1_features_extractors_embed_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featureextractors/README.md#extract_embeddings_v1_features_extractors_embed_post) - Extract Embeddings
|
183
|
+
|
184
|
+
### [feature_search](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featuresearch/README.md)
|
185
|
+
|
186
|
+
* [search_features_v1_features_search_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featuresearch/README.md#search_features_v1_features_search_post) - Search Features
|
184
187
|
|
185
188
|
### [features](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md)
|
186
189
|
|
187
|
-
* [
|
188
|
-
* [
|
189
|
-
* [
|
190
|
-
* [
|
191
|
-
* [search](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#search) - Search Features
|
190
|
+
* [get_feature_v1_features_feature_id_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#get_feature_v1_features_feature_id_get) - Get Feature
|
191
|
+
* [delete_feature_v1_features_feature_id_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#delete_feature_v1_features_feature_id_delete) - Delete Feature
|
192
|
+
* [full_feature_update_v1_features_feature_id_put](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#full_feature_update_v1_features_feature_id_put) - Full Feature Update
|
193
|
+
* [list_features_v1_features_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#list_features_v1_features_post) - List Features
|
192
194
|
|
193
195
|
### [health](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/health/README.md)
|
194
196
|
|
195
197
|
* [check](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/health/README.md#check) - Healthcheck
|
196
198
|
|
197
|
-
### [
|
199
|
+
### [ingest_assets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md)
|
198
200
|
|
199
|
-
* [
|
200
|
-
* [
|
201
|
-
* [
|
201
|
+
* [ingest_text_v1_ingest_text_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md#ingest_text_v1_ingest_text_post) - Ingest Text
|
202
|
+
* [ingest_video_url_v1_ingest_videos_url_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md#ingest_video_url_v1_ingest_videos_url_post) - Ingest Video Url
|
203
|
+
* [ingest_image_url_v1_ingest_images_url_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md#ingest_image_url_v1_ingest_images_url_post) - Ingest Image Url
|
202
204
|
|
203
205
|
|
204
206
|
### [namespaces](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md)
|
205
207
|
|
206
|
-
* [
|
207
|
-
* [
|
208
|
-
* [
|
209
|
-
* [
|
210
|
-
* [
|
211
|
-
* [
|
208
|
+
* [create_namespace_v1_namespaces_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#create_namespace_v1_namespaces_post) - Create Namespace
|
209
|
+
* [list_namespaces_v1_namespaces_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list_namespaces_v1_namespaces_get) - List Namespaces
|
210
|
+
* [delete_namespace_v1_namespaces_namespace_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#delete_namespace_v1_namespaces_namespace_delete) - Delete Namespace
|
211
|
+
* [update_namespace_v1_namespaces_namespace_put](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#update_namespace_v1_namespaces_namespace_put) - Update Namespace
|
212
|
+
* [get_namespace_v1_namespaces_namespace_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#get_namespace_v1_namespaces_namespace_get) - Get Namespace
|
213
|
+
* [list_available_models_v1_namespaces_models_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list_available_models_v1_namespaces_models_get) - List Available Models
|
212
214
|
|
213
215
|
### [organizations](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md)
|
214
216
|
|
215
|
-
* [
|
216
|
-
* [
|
217
|
-
* [
|
218
|
-
* [
|
219
|
-
* [
|
220
|
-
* [
|
221
|
-
* [
|
222
|
-
* [
|
217
|
+
* [get_organization_v1_organizations_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_organization_v1_organizations_get) - Get Organization
|
218
|
+
* [get_usage_v1_organizations_usage_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_usage_v1_organizations_usage_get) - Get Usage
|
219
|
+
* [get_user_v1_organizations_users_user_email_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_user_v1_organizations_users_user_email_get) - Get User
|
220
|
+
* [delete_user_v1_organizations_users_user_email_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_user_v1_organizations_users_user_email_delete) - Delete User
|
221
|
+
* [add_user_v1_organizations_users_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#add_user_v1_organizations_users_post) - Add User
|
222
|
+
* [create_api_key_v1_organizations_users_user_email_api_keys_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#create_api_key_v1_organizations_users_user_email_api_keys_post) - Create Api Key
|
223
|
+
* [delete_api_key_v1_organizations_users_user_email_api_keys_key_name_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_api_key_v1_organizations_users_user_email_api_keys_key_name_delete) - Delete Api Key
|
224
|
+
* [update_api_key_v1_organizations_users_user_email_api_keys_key_name_patch](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#update_api_key_v1_organizations_users_user_email_api_keys_key_name_patch) - Update Api Key
|
223
225
|
|
224
226
|
### [tasks](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md)
|
225
227
|
|
226
|
-
* [
|
227
|
-
* [
|
228
|
+
* [kill_task_v1_tasks_task_id_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#kill_task_v1_tasks_task_id_delete) - Kill Task
|
229
|
+
* [get_task_v1_tasks_task_id_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#get_task_v1_tasks_task_id_get) - Get Task Information
|
230
|
+
|
231
|
+
### [taxonomy_entities](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md)
|
232
|
+
|
233
|
+
* [create_taxonomy_v1_entities_taxonomies_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#create_taxonomy_v1_entities_taxonomies_post) - Create Taxonomy
|
234
|
+
* [list_taxonomies_v1_entities_taxonomies_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#list_taxonomies_v1_entities_taxonomies_get) - List Taxonomies
|
235
|
+
* [get_taxonomy_v1_entities_taxonomies_taxonomy_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#get_taxonomy_v1_entities_taxonomies_taxonomy_get) - Get Taxonomy
|
236
|
+
* [delete_taxonomy_v1_entities_taxonomies_taxonomy_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#delete_taxonomy_v1_entities_taxonomies_taxonomy_delete) - Delete Taxonomy
|
237
|
+
* [update_taxonomy_v1_entities_taxonomies_taxonomy_patch](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#update_taxonomy_v1_entities_taxonomies_taxonomy_patch) - Update Taxonomy
|
238
|
+
* [get_taxonomy_node_v1_entities_taxonomies_nodes_node_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#get_taxonomy_node_v1_entities_taxonomies_nodes_node_get) - Get Taxonomy Node
|
239
|
+
* [update_node_v1_entities_taxonomies_nodes_node_patch](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#update_node_v1_entities_taxonomies_nodes_node_patch) - Update Node
|
240
|
+
* [classify_features_v1_entities_taxonomies_taxonomy_classify_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#classify_features_v1_entities_taxonomies_taxonomy_classify_post) - Classify Features against Taxonomy
|
241
|
+
* [list_classifications_v1_entities_taxonomies_taxonomy_classifications_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#list_classifications_v1_entities_taxonomies_taxonomy_classifications_post) - List Taxonomy Classifications
|
242
|
+
* [delete_classifications_v1_entities_taxonomies_taxonomy_classifications_classification_id_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#delete_classifications_v1_entities_taxonomies_taxonomy_classifications_classification_id_delete) - Delete Classifications
|
228
243
|
|
229
244
|
</details>
|
230
245
|
<!-- End Available Resources and Operations [operations] -->
|
@@ -244,7 +259,7 @@ with Mixpeek(
|
|
244
259
|
token=os.getenv("MIXPEEK_TOKEN", ""),
|
245
260
|
) as mixpeek:
|
246
261
|
|
247
|
-
res = mixpeek.
|
262
|
+
res = mixpeek.health.check(,
|
248
263
|
RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
|
249
264
|
|
250
265
|
# Handle response
|
@@ -263,7 +278,7 @@ with Mixpeek(
|
|
263
278
|
token=os.getenv("MIXPEEK_TOKEN", ""),
|
264
279
|
) as mixpeek:
|
265
280
|
|
266
|
-
res = mixpeek.
|
281
|
+
res = mixpeek.health.check()
|
267
282
|
|
268
283
|
# Handle response
|
269
284
|
print(res)
|
@@ -285,7 +300,7 @@ By default, an API error will raise a models.APIError exception, which has the f
|
|
285
300
|
| `.raw_response` | *httpx.Response* | The raw HTTP response |
|
286
301
|
| `.body` | *str* | The response content |
|
287
302
|
|
288
|
-
When custom error responses are specified for an operation, the SDK may also raise their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `
|
303
|
+
When custom error responses are specified for an operation, the SDK may also raise their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `get_organization_v1_organizations_get_async` method may raise the following exceptions:
|
289
304
|
|
290
305
|
| Error Type | Status Code | Content Type |
|
291
306
|
| -------------------------- | ----------------------- | ---------------- |
|
@@ -305,7 +320,7 @@ with Mixpeek(
|
|
305
320
|
res = None
|
306
321
|
try:
|
307
322
|
|
308
|
-
res = mixpeek.organizations.
|
323
|
+
res = mixpeek.organizations.get_organization_v1_organizations_get()
|
309
324
|
|
310
325
|
# Handle response
|
311
326
|
print(res)
|
@@ -333,11 +348,11 @@ from mixpeek import Mixpeek
|
|
333
348
|
import os
|
334
349
|
|
335
350
|
with Mixpeek(
|
336
|
-
server_url="https://api.mixpeek.com/",
|
351
|
+
server_url="https://api.mixpeek.com/v1",
|
337
352
|
token=os.getenv("MIXPEEK_TOKEN", ""),
|
338
353
|
) as mixpeek:
|
339
354
|
|
340
|
-
res = mixpeek.
|
355
|
+
res = mixpeek.health.check()
|
341
356
|
|
342
357
|
# Handle response
|
343
358
|
print(res)
|
@@ -1,19 +1,20 @@
|
|
1
1
|
py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
2
2
|
mixpeek/__init__.py,sha256=ybmMeI8Pa2HEQCdADbpyIdm3JWu8AU61HxmDupOlTws,220
|
3
|
-
mixpeek/_hooks/__init__.py,sha256=
|
3
|
+
mixpeek/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,118
|
4
4
|
mixpeek/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
5
|
-
mixpeek/_hooks/sdkhooks.py,sha256=
|
5
|
+
mixpeek/_hooks/sdkhooks.py,sha256=T0xbVPw8mvvFszHZlrZdtFrJBovAqE-JQfw4dS9Xi7Y,2495
|
6
6
|
mixpeek/_hooks/types.py,sha256=Qh9pO5ndynMrWpMLPkJUsOmAJ1AJHntJAXb5Yxe_a4o,2568
|
7
|
-
mixpeek/_version.py,sha256
|
8
|
-
mixpeek/assets.py,sha256=
|
7
|
+
mixpeek/_version.py,sha256=QDzKMMkbZJjulpfNEQYRNN4RBAbgGXTBYDXBu4O8MOw,312
|
8
|
+
mixpeek/assets.py,sha256=cHLz0gzqQAtdZlssqJJnMBdYKSKIeBH-eNIwDpDCDiI,69712
|
9
9
|
mixpeek/basesdk.py,sha256=j_PZqE6WgIfx1cPCK5gAVn-rgPy9iLhUN5ELtefoEU0,11976
|
10
|
-
mixpeek/collections.py,sha256=
|
11
|
-
mixpeek/
|
12
|
-
mixpeek/
|
13
|
-
mixpeek/
|
10
|
+
mixpeek/collections.py,sha256=ebsOO4uWkx2g7mn-1h6_cSicIULr6i_51SVcStJNmSQ,45017
|
11
|
+
mixpeek/feature_extractors.py,sha256=BEbpyJ8a5OHZQ5gv7NyUKb88kla9oU5K0PaN3e7LhTU,8790
|
12
|
+
mixpeek/feature_search.py,sha256=hyb0Ac6QsayXybfusAZAr4rrAb8b69n6_9c14R1CHCQ,16645
|
13
|
+
mixpeek/features.py,sha256=hG5l0OgVYwURoaQF0LSVXL_-GcdZr3OPG3QjEpVtSlE,38270
|
14
|
+
mixpeek/health.py,sha256=WHt-S9BJvonMSIPGF8VSCDqLMhmigk-FhC0-0tIK9_8,6254
|
14
15
|
mixpeek/httpclient.py,sha256=WDbLpMzo7qmWki_ryOJcCAYNI1T4uyWKV08rRuCdNII,2688
|
15
|
-
mixpeek/
|
16
|
-
mixpeek/models/__init__.py,sha256=
|
16
|
+
mixpeek/ingest_assets.py,sha256=altqmRREAzKxXiKlJojO5U9W-x5j1-fspXwJoEXG30Q,37958
|
17
|
+
mixpeek/models/__init__.py,sha256=uzyvJIOJ-7KgaXhaY54g5mS2m6hiyK8losqQw0jeJi0,30906
|
17
18
|
mixpeek/models/actionusage.py,sha256=WAnnBVTeQ9j0dtIrubfyyJQwbBamxManfS8fc2OFNyo,324
|
18
19
|
mixpeek/models/apierror.py,sha256=9mTyJSyvUAOnSfW_1HWt9dGl8IDlpQ68DebwYsDNdug,528
|
19
20
|
mixpeek/models/apikey.py,sha256=P99SWsu6wgc6HStE2MteANIGShUkM2dwQnbQvdg5AOc,654
|
@@ -22,47 +23,60 @@ mixpeek/models/assetfeatures.py,sha256=etqfjGnlrbI6fAp6OrM86jxP92X0MAeO3lKqUz3Pk
|
|
22
23
|
mixpeek/models/assetresponse.py,sha256=XR0gM7agzRnGIOqqPqrotZRg1hdN1o-rfW6x9-esE4g,5069
|
23
24
|
mixpeek/models/assets_model_searchquery.py,sha256=F8TTe7lCD2IF_5ik-GwlvAR2437SBsWCI7IDipft904,664
|
24
25
|
mixpeek/models/assetupdate.py,sha256=xVL49RVIsc7ytm0yVJ9xq1GcSykiswMiC8GeWnZMKB4,670
|
25
|
-
mixpeek/models/
|
26
|
-
mixpeek/models/availablemodels.py,sha256=
|
26
|
+
mixpeek/models/assignmentconfig.py,sha256=MrgnPQNNlV8RSDr3OovDQyFjORdMocmfZRZN3NhgHLo,939
|
27
|
+
mixpeek/models/availablemodels.py,sha256=zQA2L_bVRuXFs20rkDOnpBywWoMtkzAyo6E7d1fD7hQ,518
|
28
|
+
mixpeek/models/availablemodelsresponse.py,sha256=DDo0FaQx38Dls2A-4K4pTdpFydzXS533WkJQz9zBADE,1072
|
27
29
|
mixpeek/models/boolindexparams.py,sha256=bg7Hy6y9acpu7AxMpHTsYjEphDd0HnrqFPSgIDpgdZc,454
|
30
|
+
mixpeek/models/classificationmatch.py,sha256=uMvpleNraudDlSq4aug8Yh7TXjQQXYZ_rul1L6Sr_yk,2127
|
31
|
+
mixpeek/models/classificationwithfeature.py,sha256=LVxK0arDuqBTc7QDAgdOOx0-H1RvKdTGWhjT_67z_-o,2366
|
32
|
+
mixpeek/models/classify_features_v1_entities_taxonomies_taxonomy_classify_postop.py,sha256=wKLV5ZC-0EwlH_2rKWukmvUGpI_E-hzeveMO4mpb1lA,2666
|
28
33
|
mixpeek/models/collectionmodel.py,sha256=iCh87KQXyc2QPD12Dzr8OhhsqkflyLSAKrYSm00STEc,2163
|
29
34
|
mixpeek/models/collectionresult.py,sha256=ijKOo_rtJKQnH6_EUfTnlhqlmz-c8HP3IF8dAeAlkik,2062
|
30
|
-
mixpeek/models/
|
31
|
-
mixpeek/models/
|
35
|
+
mixpeek/models/create_api_key_v1_organizations_users_user_email_api_keys_postop.py,sha256=FpJUoFZ0nn3FEvgiVoF-fVdp1K8NJKGkkKX4rJ2cWjw,794
|
36
|
+
mixpeek/models/create_collection_v1_collections_postop.py,sha256=GtPTeR2PC2LfGFN_hMwn1G7bSB_I_rFX9pTZF2tOcH0,2387
|
37
|
+
mixpeek/models/create_taxonomy_v1_entities_taxonomies_postop.py,sha256=_qjE2LEInNh2j5Gb4AFvdiCmpT9J_rezMy1EXzmBMJQ,2319
|
32
38
|
mixpeek/models/createcollectionrequest.py,sha256=SrM6TNu1qqWWPwLC91e1X1NvmVUXzE0a5e5B1LIOzRQ,1787
|
33
|
-
mixpeek/models/createnamespacerequest.py,sha256=
|
39
|
+
mixpeek/models/createnamespacerequest.py,sha256=yQVoSAr9hfEKTLYcjy7ifuQfIUK4-21CtlZNu3VVVFE,2435
|
34
40
|
mixpeek/models/datetimeindexparams.py,sha256=i8SJBTEnWQEMOaOcN7Pt_Zptr6fxYJyO0Mx95-0EC68,468
|
35
41
|
mixpeek/models/dateusage.py,sha256=SjrU7Wk9CirF48u01L8UUjMs9BbkJnhozTnmxkXYupA,541
|
36
42
|
mixpeek/models/db_model_paginationresponse.py,sha256=1uY3GVZsfRXB5ZvnnwNdWnetVbmoPAgT6mYJCZs6H0c,1530
|
37
|
-
mixpeek/models/
|
38
|
-
mixpeek/models/
|
39
|
-
mixpeek/models/
|
40
|
-
mixpeek/models/
|
41
|
-
mixpeek/models/
|
42
|
-
mixpeek/models/
|
43
|
+
mixpeek/models/delete_api_key_v1_organizations_users_user_email_api_keys_key_name_deleteop.py,sha256=EbE2ou5ERB-PKECL3sK3w20SmYEYJbCDNZZb2u9FHkE,714
|
44
|
+
mixpeek/models/delete_asset_v1_assets_asset_id_deleteop.py,sha256=hRf31MwUPeA1VGZ_MKf_Nw6Yfb-P3-Q2vySjDIvCibs,2186
|
45
|
+
mixpeek/models/delete_classifications_v1_entities_taxonomies_taxonomy_classifications_classification_id_deleteop.py,sha256=yQUby3p1a3ew9kcYVGekliZhDPK9EwBl7sKv03dRoc8,2640
|
46
|
+
mixpeek/models/delete_collection_v1_collections_collection_deleteop.py,sha256=3ERwvru9I992FNSM7vOPxrUaMc2O17NOqz5QCz5swMk,2326
|
47
|
+
mixpeek/models/delete_feature_v1_features_feature_id_deleteop.py,sha256=eisBmX0TTzstsrdanlZxjSl8MvNQotgS9VusYWqyHfs,2202
|
48
|
+
mixpeek/models/delete_namespace_v1_namespaces_namespace_deleteop.py,sha256=8Rx0MWjeTpxIoeMalauVf-0e-gquwC441VregBqADJ4,642
|
49
|
+
mixpeek/models/delete_taxonomy_v1_entities_taxonomies_taxonomy_deleteop.py,sha256=xgBTZtgI9B1ryz-T9n67XpDavuRcYmnfb9hlDgNvHs4,2322
|
50
|
+
mixpeek/models/delete_user_v1_organizations_users_user_email_deleteop.py,sha256=ihsOW_KtfWvJTIwZW2zWKxFYnkbX7Qn7ux8XQxu8Z3U,544
|
43
51
|
mixpeek/models/denseembedding.py,sha256=ECX8Nwo6tD8Qm1WxGPGOy4H8WYLQ6q6VKqbnanT3vlA,413
|
44
|
-
mixpeek/models/
|
52
|
+
mixpeek/models/discoverrequest.py,sha256=fPWVU76I0UjLD-GBN81wU0Q15xRHOaE9U52HQ2tATQo,2656
|
53
|
+
mixpeek/models/embeddingconfig.py,sha256=tjP4AoaWyMztqWkrL07T2ACxzuldYjZfCPaUQrk-4aQ,742
|
54
|
+
mixpeek/models/embeddingrequest.py,sha256=1xH5yNaNGl9Zi4aikEpb73hl9KSfZLnpX79ZVL6lypI,3100
|
45
55
|
mixpeek/models/embeddingresponse.py,sha256=1H6OWwIIO0ktqhmK0mIGdo3Bqv8saM7jFaFlljEZL1g,2223
|
46
56
|
mixpeek/models/entitysettings.py,sha256=L3v0AttBjp5Y75wOt1tYNgT9ij4wfJpA9XV6tFCq9yg,1684
|
47
57
|
mixpeek/models/errordetail.py,sha256=j7QNqtNrAHjznF8F-eBuxwEedFhYIqP5YKOyX8dSlcg,1510
|
48
58
|
mixpeek/models/errorresponse.py,sha256=YIbCFc44szh_OIUoQ3BByHWouYwa2Tqedm9NJcrNvyQ,582
|
49
59
|
mixpeek/models/facedetectsettings.py,sha256=mU78KWd0x1Uy_8FqyWSWPPJcDbwFhxIcAc1RJeR8uL4,1710
|
50
60
|
mixpeek/models/featureextractionembeddingrequest.py,sha256=7aHPcCdd3PoYX2Ozznnf8jsvqqI5beycYgZ56djPLnE,1770
|
61
|
+
mixpeek/models/featureoptions.py,sha256=pwxSNknZglFVPTLdWdMz7SoyBKahRVbdsG9xgtPTsK8,875
|
51
62
|
mixpeek/models/featureresponse.py,sha256=eWsnn1FSccueE9UZOSxVOH_4IimfuKbbsS1bKNPvJhs,2521
|
52
63
|
mixpeek/models/features_model_paginationresponse.py,sha256=LR3n2NawnOf5QjaWjfV_i6WDX-IxncVPA7nJxZPkySE,1558
|
53
64
|
mixpeek/models/featureupdaterequest.py,sha256=z4OJi0SyHqQED4T1uV5CbDPipZm4-W1V345M-5AZY-E,495
|
54
65
|
mixpeek/models/filtercondition.py,sha256=qBtghojFaoCcShSgCV9gPMWHeeqEA0Pox11O73QTPIw,1971
|
55
66
|
mixpeek/models/floatindexparams.py,sha256=Ac0zuicEKeBwF59M4w0W6e6MODI2dRwDT1cntZt1D8E,453
|
56
|
-
mixpeek/models/
|
57
|
-
mixpeek/models/
|
67
|
+
mixpeek/models/full_asset_update_v1_assets_asset_id_putop.py,sha256=w2k-wiIYifTXgG-jfbY_XcD4uCQQO9-nhxvJGMIP4nA,2511
|
68
|
+
mixpeek/models/full_feature_update_v1_features_feature_id_putop.py,sha256=qV2AZv1iYv81lWCEcVKA9rTNyF0dFUivhHNS5-mQQeQ,2541
|
69
|
+
mixpeek/models/genericsuccessresponse.py,sha256=0Ce1Rab7ED1vQrVP6nAtjFYz-_o0nV0rPhaJHWKifA4,421
|
58
70
|
mixpeek/models/geoindexparams.py,sha256=wMb-04qAYhBZW1tCMzr8ZLRf5s43aWp_b4u_17bV5AE,443
|
59
|
-
mixpeek/models/
|
60
|
-
mixpeek/models/
|
61
|
-
mixpeek/models/
|
62
|
-
mixpeek/models/
|
63
|
-
mixpeek/models/
|
64
|
-
mixpeek/models/
|
65
|
-
mixpeek/models/
|
71
|
+
mixpeek/models/get_asset_v1_assets_asset_id_getop.py,sha256=2V-O6nYeHcydDPXOvYbgLzvcX3_8BThjCPW50JwtGgw,2811
|
72
|
+
mixpeek/models/get_asset_with_features_v1_assets_asset_id_features_getop.py,sha256=LF8ebuHH0jFjsiyXjwq8vBi_Z3Cz9ospxXYSGcRX6kE,2852
|
73
|
+
mixpeek/models/get_collection_v1_collections_collection_getop.py,sha256=8M0ujX7hTmppjGfB1V-Oophri6guzRPJ89xTyJm9Yac,2314
|
74
|
+
mixpeek/models/get_feature_v1_features_feature_id_getop.py,sha256=kD27iLRuZsBI861uGONBXFh5_sWvFuZc6LP2dyKhUAI,2628
|
75
|
+
mixpeek/models/get_namespace_v1_namespaces_namespace_getop.py,sha256=21luHlRdFzWL2xm0klDBPSZFLjKBw7hudQN5YzhsSA0,630
|
76
|
+
mixpeek/models/get_task_v1_tasks_task_id_getop.py,sha256=ECgUzq0iUExfA3wjHrBoSTs-8-9zAGuStRU9sJitMXI,2166
|
77
|
+
mixpeek/models/get_taxonomy_node_v1_entities_taxonomies_nodes_node_getop.py,sha256=riaPoAp_wQKoNw-EmBWOgLx2-WLS3ESR5iioFxe7-GQ,2334
|
78
|
+
mixpeek/models/get_taxonomy_v1_entities_taxonomies_taxonomy_getop.py,sha256=X4TYSESSck4l2GX6Foc6-2viWLlUlBrKk_pS7y7BToE,2306
|
79
|
+
mixpeek/models/get_user_v1_organizations_users_user_email_getop.py,sha256=CaY2ITxTdc8gDPPlR1co-JGPT30WO6ye-E9MGZ2gmzs,532
|
66
80
|
mixpeek/models/groupbyoptions.py,sha256=9ROiNFqR4Y-GGeaQEL4gQJ04CjXClFFqlv8Y9j_TARQ,2281
|
67
81
|
mixpeek/models/groupbyoptionsasset.py,sha256=pTGoSfGsonefAoKO1yHcEboHdJNGTWUHqBmCArkGA9Y,2279
|
68
82
|
mixpeek/models/groupedassetdata.py,sha256=jezVBoyKu3muLIyeks5M3MqvJWBisQkkPGA1Jycbsrc,522
|
@@ -72,9 +86,9 @@ mixpeek/models/imagedescribesettings.py,sha256=ulaQrF4AgdbmkJL-TB098W8TzhS_iG7Qy
|
|
72
86
|
mixpeek/models/imagedetectsettings.py,sha256=isbyJubebMoiA1K8bEBu2yQvEBDZSiM_DoNrU3MLyDY,1846
|
73
87
|
mixpeek/models/imagereadsettings.py,sha256=kGsvK00Wn6RIW7Qg2MJZ0IKYmeOVZJvyV695hBcVU6E,2495
|
74
88
|
mixpeek/models/imagesettings.py,sha256=2LSeuO-uIW82woZjXAdXRBz9KpgKVmOc6XV6YU8owZU,3706
|
75
|
-
mixpeek/models/
|
76
|
-
mixpeek/models/
|
77
|
-
mixpeek/models/
|
89
|
+
mixpeek/models/ingest_image_url_v1_ingest_images_url_postop.py,sha256=_7pSPSI9rr6_w_aX5R3YIUWCyca3BMfTmh9nxdG5EFA,2359
|
90
|
+
mixpeek/models/ingest_text_v1_ingest_text_postop.py,sha256=ZYJPM3woJ_9Nsa65QDLJ0cEncYyvdozCd_gtmZcC13E,2311
|
91
|
+
mixpeek/models/ingest_video_url_v1_ingest_videos_url_postop.py,sha256=KPKrgMs9J4xVFpD45eAUhNrH3MWR7W6-gyzsiWaTzRo,2359
|
78
92
|
mixpeek/models/inputtype.py,sha256=e71-3dFq8sWgy3Ue0P-gADus3j1MLWvdHETlwBU7HjM,234
|
79
93
|
mixpeek/models/integerindexparams.py,sha256=r6nNOjihSSptcYwOdfrZTFRX_4bKWHbasGjEjdCLqM8,591
|
80
94
|
mixpeek/models/internal/__init__.py,sha256=UeANM6ipWP5CqyMd3Yhr6UbpvAabXdSYf_GtHdZ0-BI,163
|
@@ -83,33 +97,40 @@ mixpeek/models/jsonimageoutputsettings.py,sha256=edd5mFi9AmKSpHTCNiP0huzu3_9_IVI
|
|
83
97
|
mixpeek/models/jsontextoutputsettings.py,sha256=EGbFfuSFSXQO6A3_Gkj58qPVsEU5NE55dxMUcvK_CHk,1622
|
84
98
|
mixpeek/models/jsonvideooutputsettings.py,sha256=7kf0tJM2Go-rWBIbp9yWJYv2RFesQvOjPsE3p-DeA9I,1716
|
85
99
|
mixpeek/models/keywordindexparams.py,sha256=V_p8KMQ_eftLvDSMTFuifeOEXZVAqKFml9Fx2woyE50,535
|
86
|
-
mixpeek/models/
|
87
|
-
mixpeek/models/
|
88
|
-
mixpeek/models/
|
89
|
-
mixpeek/models/
|
100
|
+
mixpeek/models/kill_task_v1_tasks_task_id_deleteop.py,sha256=1LuuipgT4IVUnTBnw2hIbD20ltiMg-NOXWv-tZHZnQs,2174
|
101
|
+
mixpeek/models/list_assets_v1_assets_postop.py,sha256=P2DjYuGJ6jtyEujEL1qkxclKjkd-6n8pr8-TLgsKE-Y,2759
|
102
|
+
mixpeek/models/list_classifications_v1_entities_taxonomies_taxonomy_classifications_postop.py,sha256=OtvqhPLZC3WXFPKSAn3N6IzEjhxD87kVqt5ggV_UG64,3174
|
103
|
+
mixpeek/models/list_collections_v1_collections_getop.py,sha256=zDz5GCAi5mMDmkPnIrS6L3qIje3tEXUcUUDMnajWCD0,2461
|
104
|
+
mixpeek/models/list_features_v1_features_postop.py,sha256=WTX1iNN-cCSUOjOr_e8hEdJJTuyKV8gB7dh3ckxMa4o,2989
|
105
|
+
mixpeek/models/list_taxonomies_v1_entities_taxonomies_getop.py,sha256=jrpaLqwpcIQBJc44qCSM4LdXma5b4_6dbrojqWq9NiE,2649
|
90
106
|
mixpeek/models/listassetsrequest.py,sha256=Bx3cnpzpJCKcyBcrXF5jZ8lm59dTfjznq1xA_0DiaO0,3158
|
91
107
|
mixpeek/models/listassetsresponse.py,sha256=do19qdQCmrAtt5bc99J-4Hx4VzC5yb1WqgkAjvepp5E,645
|
108
|
+
mixpeek/models/listclassificationsrequest.py,sha256=Udg82v2kUYviGAeJe355vU1ZXDYxBrMLsrHzRKndb-c,2958
|
109
|
+
mixpeek/models/listclassificationsresponse.py,sha256=dlpI24_WXa14Z8o1pjljkg-4BKYqMDACRb_eniEDh_8,994
|
92
110
|
mixpeek/models/listcollectionsresponse.py,sha256=QRDk1-yg21sbRFUrH9lfqvA7q8Ex517C5UbsI5w1lQY,670
|
93
111
|
mixpeek/models/listfeaturesrequest.py,sha256=b0hUacli5s9E0W-jeboYLJrQyHMmetd7VyIZh1_gSTc,2830
|
94
112
|
mixpeek/models/listfeaturesresponse.py,sha256=5bGne8MktUoJnqyo2uWTg1nJQmFLNRTS8TX1HYcGvhQ,689
|
113
|
+
mixpeek/models/listtaxonomiesresponse.py,sha256=Qd6kppjPrLR63e8vfNCGKJmw_YHilIwoBdq23XCTU90,767
|
95
114
|
mixpeek/models/logicaloperator.py,sha256=-YpC_qxzBHcjS71TsoVCEI9OvePL56Fx6Q_lpUaZipg,2824
|
96
115
|
mixpeek/models/logodetectsettings.py,sha256=f_xvsILMrlbhS4raufxc7iNaONqEvWWTj7_OOIr4BTM,1706
|
97
116
|
mixpeek/models/modality.py,sha256=qITDsYEVP7vf1PiekTD6F0cRGn8HZaoHhPmn-C8ksmQ,291
|
98
|
-
mixpeek/models/modeldetails.py,sha256=
|
117
|
+
mixpeek/models/modeldetails.py,sha256=eNY7vsH99lyvSmKUOJ8ieOekgoNz2M2rB26Z6RGdG70,1902
|
99
118
|
mixpeek/models/namespaceresponse.py,sha256=nbUCsc-8IMnJPn5rQO1jwODMgfly_KPz6pqg8b2udnk,1506
|
119
|
+
mixpeek/models/nodeoptions.py,sha256=9NRqfRKRKzvcTmCkWP45j79wZ1mBuf5gk2YsMtlKiRs,513
|
120
|
+
mixpeek/models/nodeupdate.py,sha256=CUCAhyn9BAgA2aZf-rBu3mqzC3ccdqTonWnSy0pwzE4,1685
|
100
121
|
mixpeek/models/organizationmodel.py,sha256=nkTGqZdVoNiwy-OIWbgRZpkxOnwjvtG29r8Y3NaIDco,1204
|
101
|
-
mixpeek/models/
|
122
|
+
mixpeek/models/partial_asset_update_v1_assets_asset_id_patchop.py,sha256=cs2H10TRDKS0IWtnKmH430i7YDc0P68mSRswe-79SB0,2521
|
102
123
|
mixpeek/models/payloadindexconfig.py,sha256=ik0jF70xJaA4K1PcQbt9gzxPu1FW_K0OUkta4SUugK0,2932
|
103
124
|
mixpeek/models/payloadindextype.py,sha256=1Lw8LccITIMG8KVRmsXHtmTPA8hNKwY4fBtM00Nnkmg,393
|
104
125
|
mixpeek/models/payloadschematype.py,sha256=DOhqg4XSdyx5ZT-1udYBcZ6PyhG48hiQ-gOtkrdbE40,332
|
105
|
-
mixpeek/models/permission.py,sha256=
|
126
|
+
mixpeek/models/permission.py,sha256=Jz-INYVs9RibQhR8fQmf_-FyPoszmycqyR8wUKo96zk,571
|
106
127
|
mixpeek/models/processimageurlinput.py,sha256=-qVpxxIO0gLs1_po7Ngcp56a9Yegbo_OmA-vsrUJyfI,4196
|
107
128
|
mixpeek/models/processtextinput.py,sha256=2pvb9UDEPj00VVDeN-SLe-ZoKWBWv8VtHJJp9Mx4G9Q,3556
|
108
129
|
mixpeek/models/processvideourlinput.py,sha256=ITjmYETQZjVNGGMnB0eFj12qs5m6fiwm5-Wqd8XsQd8,4212
|
109
130
|
mixpeek/models/querysettings.py,sha256=uz35cHBuqmXYZbXl1Jm0vLA_-v4o2cZdy_lvX2fjnCs,2146
|
110
131
|
mixpeek/models/rerankingoptions.py,sha256=ZtaBvVODYwWjEbiosB_mNhn2HuMYF9sPrt4P-xb85wU,1560
|
111
|
-
mixpeek/models/
|
112
|
-
mixpeek/models/
|
132
|
+
mixpeek/models/search_assets_v1_assets_search_postop.py,sha256=0lAHBnYg-UgL31nHYZ1UFrxG3K-xT75YvNrXX7YkPIs,2340
|
133
|
+
mixpeek/models/search_features_v1_features_search_postop.py,sha256=Gmuo9M31hlOkK_15xbh6YMSfMEN945HDUYEcY5QLxqQ,3442
|
113
134
|
mixpeek/models/search_model_searchquery.py,sha256=Pz4li1PB4GWWtwoa7IElJZQKE5v1xxjumGIES6ioVCw,2538
|
114
135
|
mixpeek/models/searchassetsrequest.py,sha256=ikLw6_K9xBF_bSuzrr6-lEIKLYlfmxC9-U_gr_xZf8A,2998
|
115
136
|
mixpeek/models/searchrequestfeatures.py,sha256=AS5GPy2I8AXiEwA-o91f_0dnMmS3XKG6Su8VmBfrBFY,5707
|
@@ -118,13 +139,20 @@ mixpeek/models/sortoption.py,sha256=3_cJW0A9vt8INQowzJ_kZtmYT1mlBNy-__f-tvLiC3Q,
|
|
118
139
|
mixpeek/models/sparseembedding.py,sha256=-nXJSRELVSQqTyXAPYA4swPKBscLdljq9vH4N91Yz7A,530
|
119
140
|
mixpeek/models/taskresponse.py,sha256=_m1dqkl9TqL3DDw8OaFxO-iae8FRbGUrjF3Ed87OdBE,1670
|
120
141
|
mixpeek/models/taskstatus.py,sha256=QdRjtkiWROdM9GmWNs0U1rGbX2Nvek3OG-_Ay5D9cSI,423
|
142
|
+
mixpeek/models/taxonomycreate.py,sha256=FpkWIC3pncddWn2A5S3vspJBi1zG2OATsM5i_JFxsBI,641
|
121
143
|
mixpeek/models/taxonomyextractionconfig.py,sha256=sTi8qWOX00XeXDIfaRyozr_Cz6rZRCT3LP_tbrMm6us,1122
|
144
|
+
mixpeek/models/taxonomymodel.py,sha256=FXmWJ1Cg1JN3RtBG6fkHI06j-RRwUGRhaWoPW1VemWw,753
|
145
|
+
mixpeek/models/taxonomynode.py,sha256=uq9qjkmEcHhi9J2FQmXr99SOTRhgJmXm7DJpMBJJqlI,3550
|
146
|
+
mixpeek/models/taxonomynodecreate.py,sha256=l_rwD9nbxD28PPUIlGGW5JOY8cpxVa_D7hLo-hRFtrM,2327
|
147
|
+
mixpeek/models/taxonomyupdate.py,sha256=EZ-ORel6IRUOkIwbvCHjd2mUTzv5ZblJawHunOJVT7s,1852
|
122
148
|
mixpeek/models/textindexparams.py,sha256=_E7_Rfb9g-3w8im3DPcOJF7zWIR9g_Q57_ZtTW3Rs98,798
|
123
149
|
mixpeek/models/textsettings.py,sha256=PHj3hWRSLCOk3MomjAc_fiQ8Y9e1r_qdqYysgef1RMA,2754
|
124
150
|
mixpeek/models/tokenizertype.py,sha256=anZ-d0-akzNjteTTGJmUUlhzZOglV_h3mz8rYVfUQzk,268
|
125
|
-
mixpeek/models/
|
126
|
-
mixpeek/models/
|
127
|
-
mixpeek/models/
|
151
|
+
mixpeek/models/update_api_key_v1_organizations_users_user_email_api_keys_key_name_patchop.py,sha256=xYL3lQknHtqm-keJ9N6FlyeuMzGqe1ob7AgLJcnpZE0,972
|
152
|
+
mixpeek/models/update_collection_v1_collections_collection_putop.py,sha256=tMwXUaXI1k0XnbzEI4qazYT8VkAijp7sFpX2xDFTglc,2691
|
153
|
+
mixpeek/models/update_namespace_v1_namespaces_namespace_putop.py,sha256=MMYlfHPG_iXU7Ev7OI-dKrBnUpusMQbnrHwSuAiDaqE,979
|
154
|
+
mixpeek/models/update_node_v1_entities_taxonomies_nodes_node_patchop.py,sha256=wNKWwCzOw-spKh5QHNW-lZLE4EukV7wLlvcdUsUctYs,2563
|
155
|
+
mixpeek/models/update_taxonomy_v1_entities_taxonomies_taxonomy_patchop.py,sha256=MFhM65OeJtZsPxt7LcIOF4tZ4ihEPWXCtXMJy58Uy4c,2613
|
128
156
|
mixpeek/models/updateassetrequest.py,sha256=dJ5BWLOuZws5uBvUPRllcnVbaz47r4q2pvSGN8Ng9O0,2397
|
129
157
|
mixpeek/models/updatenamespacerequest.py,sha256=JdWrwx2dzoY9OxeEiWt1LRWlokO9yVZ2QKWs-C0vKFU,871
|
130
158
|
mixpeek/models/usage.py,sha256=Y7knayZRJH0ii1wTK83cy8adDyYtBQlOVhu4muc1Ri8,432
|
@@ -132,19 +160,20 @@ mixpeek/models/usermodel_input.py,sha256=MfBJ_huhtCyiRQDLOySSjUEssmgMk0wE0dVxJyv
|
|
132
160
|
mixpeek/models/usermodel_output.py,sha256=uEngREhhuEiAGq4Aid0sQUAoI_0I2Bw5AKq3Fz2IYF4,887
|
133
161
|
mixpeek/models/uuidindexparams.py,sha256=2vR4nn9tJ5UeCKlpvUraBiLKIWSzgiErcrweV2Dsnpo,520
|
134
162
|
mixpeek/models/validationerror.py,sha256=g2zeZtOeoeEIsftPV67bjp5kqiIqBmM1hu7s3psh-Mc,524
|
135
|
-
mixpeek/models/vectormodel.py,sha256=
|
163
|
+
mixpeek/models/vectormodel.py,sha256=8jNOwQAqDrp2DQItx8jc3lI5KtSwFNTwD5uEtZyyGjU,486
|
136
164
|
mixpeek/models/vectortype.py,sha256=ZIeRoKRmNCojOWTNgco4a2ZYAmcsizA9OyRARzGhYjE,203
|
137
165
|
mixpeek/models/videodescribesettings.py,sha256=_99zl9xc_c3KWU5sm61FeSq2qRpQff2a7zrpr5z5plo,2796
|
138
166
|
mixpeek/models/videodetectsettings.py,sha256=3l8pOw2USpDQIyPX27yStSPkrgLADPY9wHdsgtCYBMw,1846
|
139
167
|
mixpeek/models/videoreadsettings.py,sha256=qFtWMM2XXZwlPgB4L-a3fQ3koxDLNtWOcGSkp7FPNdw,2427
|
140
168
|
mixpeek/models/videosettings.py,sha256=sNww8ZgmL4O4pp3wTgp76ZNzA6mC9NtOD2p-sC72pbM,4530
|
141
169
|
mixpeek/models/videotranscriptionsettings.py,sha256=70EN-PX2QiQAQjDLYaV2coUCnVjRJI2Y1pXNQYUBH2g,2471
|
142
|
-
mixpeek/namespaces.py,sha256=
|
143
|
-
mixpeek/organizations.py,sha256=
|
170
|
+
mixpeek/namespaces.py,sha256=2n8traMUAaqZFEquiELpsKpiXK8PYdHFjQTYZlExVA0,49060
|
171
|
+
mixpeek/organizations.py,sha256=xiI87NMxPeRQ3uDZoGPw3T0NqpfwxdDSVjx0e0LszfM,63769
|
144
172
|
mixpeek/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
145
|
-
mixpeek/sdk.py,sha256=
|
146
|
-
mixpeek/sdkconfiguration.py,sha256=
|
147
|
-
mixpeek/tasks.py,sha256=
|
173
|
+
mixpeek/sdk.py,sha256=EU2QoNf-Z50vzlGpB3zZB8JHwrtGh5z7lWQ07JYHhY8,5984
|
174
|
+
mixpeek/sdkconfiguration.py,sha256=D2t51Y-ht2K8ndFWLxRz4qAlOFuADsXIj6Gfp2cOR38,1603
|
175
|
+
mixpeek/tasks.py,sha256=TM-IqCa6rjuFG_MspECNjz0LmwPXA0XtbtRkHHgwd8A,16760
|
176
|
+
mixpeek/taxonomy_entities.py,sha256=-XXldQSJp-HOvES917h-Me2k-KDXRbtqmlYTV1GM4bA,96228
|
148
177
|
mixpeek/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
149
178
|
mixpeek/types/basemodel.py,sha256=PexI39iKiOkIlobB8Ueo0yn8PLHp6_wb-WO-zelNDZY,1170
|
150
179
|
mixpeek/utils/__init__.py,sha256=8npwwHS-7zjVrbkzBGO-Uk4GkjC240PCleMbgPK1Axs,2418
|
@@ -162,6 +191,6 @@ mixpeek/utils/security.py,sha256=XoK-R2YMyZtVWQte7FoezfGJS-dea9jz4qQ7w5dwNWc,600
|
|
162
191
|
mixpeek/utils/serializers.py,sha256=BSJT7kBOkNBFyP7KREyMoe14JGbgijD1M6AXFMbdmco,4924
|
163
192
|
mixpeek/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
164
193
|
mixpeek/utils/values.py,sha256=_89YXPTI_BU6SXJBzFR4pIzTCBPQW9tsOTN1jeBBIDs,3428
|
165
|
-
mixpeek-0.
|
166
|
-
mixpeek-0.
|
167
|
-
mixpeek-0.
|
194
|
+
mixpeek-0.16.0.dist-info/METADATA,sha256=7tIbLcsLU9l-jC3lHPMIe6Z5bpBDg0NgwWaq3PBVKe4,24039
|
195
|
+
mixpeek-0.16.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
196
|
+
mixpeek-0.16.0.dist-info/RECORD,,
|