mixpeek 0.15.1__tar.gz → 0.16.0__tar.gz

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 (197) hide show
  1. {mixpeek-0.15.1 → mixpeek-0.16.0}/PKG-INFO +64 -49
  2. {mixpeek-0.15.1 → mixpeek-0.16.0}/README-PYPI.md +63 -47
  3. {mixpeek-0.15.1 → mixpeek-0.16.0}/pyproject.toml +1 -1
  4. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/_hooks/__init__.py +0 -1
  5. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/_hooks/sdkhooks.py +0 -2
  6. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/_version.py +1 -1
  7. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/assets.py +74 -56
  8. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/collections.py +46 -40
  9. mixpeek-0.15.1/src/mixpeek/featureextractors.py → mixpeek-0.16.0/src/mixpeek/feature_extractors.py +6 -6
  10. mixpeek-0.16.0/src/mixpeek/feature_search.py +330 -0
  11. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/features.py +44 -356
  12. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/health.py +3 -15
  13. mixpeek-0.15.1/src/mixpeek/ingest.py → mixpeek-0.16.0/src/mixpeek/ingest_assets.py +43 -25
  14. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/__init__.py +291 -160
  15. mixpeek-0.16.0/src/mixpeek/models/assignmentconfig.py +25 -0
  16. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/availablemodels.py +2 -1
  17. mixpeek-0.15.1/src/mixpeek/models/availableindexesresponse.py → mixpeek-0.16.0/src/mixpeek/models/availablemodelsresponse.py +8 -4
  18. mixpeek-0.16.0/src/mixpeek/models/classificationmatch.py +72 -0
  19. mixpeek-0.16.0/src/mixpeek/models/classificationwithfeature.py +73 -0
  20. mixpeek-0.16.0/src/mixpeek/models/classify_features_v1_entities_taxonomies_taxonomy_classify_postop.py +73 -0
  21. mixpeek-0.15.1/src/mixpeek/models/create_api_key_organizations_users_user_email_api_keys_postop.py → mixpeek-0.16.0/src/mixpeek/models/create_api_key_v1_organizations_users_user_email_api_keys_postop.py +2 -2
  22. mixpeek-0.15.1/src/mixpeek/models/create_collection_collections_postop.py → mixpeek-0.16.0/src/mixpeek/models/create_collection_v1_collections_postop.py +2 -2
  23. mixpeek-0.16.0/src/mixpeek/models/create_taxonomy_v1_entities_taxonomies_postop.py +59 -0
  24. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/createnamespacerequest.py +2 -2
  25. mixpeek-0.15.1/src/mixpeek/models/delete_api_key_organizations_users_user_email_api_keys_key_name_deleteop.py → mixpeek-0.16.0/src/mixpeek/models/delete_api_key_v1_organizations_users_user_email_api_keys_key_name_deleteop.py +2 -2
  26. mixpeek-0.15.1/src/mixpeek/models/delete_asset_assets_asset_id_deleteop.py → mixpeek-0.16.0/src/mixpeek/models/delete_asset_v1_assets_asset_id_deleteop.py +2 -2
  27. mixpeek-0.16.0/src/mixpeek/models/delete_classifications_v1_entities_taxonomies_taxonomy_classifications_classification_id_deleteop.py +70 -0
  28. mixpeek-0.15.1/src/mixpeek/models/delete_collection_collections_collection_deleteop.py → mixpeek-0.16.0/src/mixpeek/models/delete_collection_v1_collections_collection_deleteop.py +2 -2
  29. mixpeek-0.15.1/src/mixpeek/models/delete_feature_features_feature_id_deleteop.py → mixpeek-0.16.0/src/mixpeek/models/delete_feature_v1_features_feature_id_deleteop.py +2 -2
  30. mixpeek-0.15.1/src/mixpeek/models/delete_namespace_namespaces_namespace_deleteop.py → mixpeek-0.16.0/src/mixpeek/models/delete_namespace_v1_namespaces_namespace_deleteop.py +2 -2
  31. mixpeek-0.16.0/src/mixpeek/models/delete_taxonomy_v1_entities_taxonomies_taxonomy_deleteop.py +59 -0
  32. mixpeek-0.15.1/src/mixpeek/models/delete_user_organizations_users_user_email_deleteop.py → mixpeek-0.16.0/src/mixpeek/models/delete_user_v1_organizations_users_user_email_deleteop.py +2 -2
  33. mixpeek-0.16.0/src/mixpeek/models/discoverrequest.py +74 -0
  34. mixpeek-0.16.0/src/mixpeek/models/embeddingconfig.py +33 -0
  35. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/embeddingrequest.py +40 -7
  36. mixpeek-0.16.0/src/mixpeek/models/featureoptions.py +25 -0
  37. mixpeek-0.15.1/src/mixpeek/models/full_asset_update_assets_asset_id_putop.py → mixpeek-0.16.0/src/mixpeek/models/full_asset_update_v1_assets_asset_id_putop.py +2 -2
  38. mixpeek-0.15.1/src/mixpeek/models/full_feature_update_features_feature_id_putop.py → mixpeek-0.16.0/src/mixpeek/models/full_feature_update_v1_features_feature_id_putop.py +2 -2
  39. mixpeek-0.16.0/src/mixpeek/models/genericsuccessresponse.py +17 -0
  40. mixpeek-0.15.1/src/mixpeek/models/get_asset_assets_asset_id_getop.py → mixpeek-0.16.0/src/mixpeek/models/get_asset_v1_assets_asset_id_getop.py +2 -2
  41. mixpeek-0.15.1/src/mixpeek/models/get_asset_with_features_assets_asset_id_features_getop.py → mixpeek-0.16.0/src/mixpeek/models/get_asset_with_features_v1_assets_asset_id_features_getop.py +2 -2
  42. mixpeek-0.15.1/src/mixpeek/models/get_collection_collections_collection_getop.py → mixpeek-0.16.0/src/mixpeek/models/get_collection_v1_collections_collection_getop.py +2 -2
  43. mixpeek-0.15.1/src/mixpeek/models/get_feature_features_feature_id_getop.py → mixpeek-0.16.0/src/mixpeek/models/get_feature_v1_features_feature_id_getop.py +2 -2
  44. mixpeek-0.15.1/src/mixpeek/models/get_namespace_namespaces_namespace_getop.py → mixpeek-0.16.0/src/mixpeek/models/get_namespace_v1_namespaces_namespace_getop.py +2 -2
  45. mixpeek-0.15.1/src/mixpeek/models/get_task_tasks_task_id_getop.py → mixpeek-0.16.0/src/mixpeek/models/get_task_v1_tasks_task_id_getop.py +2 -2
  46. mixpeek-0.16.0/src/mixpeek/models/get_taxonomy_node_v1_entities_taxonomies_nodes_node_getop.py +59 -0
  47. mixpeek-0.16.0/src/mixpeek/models/get_taxonomy_v1_entities_taxonomies_taxonomy_getop.py +59 -0
  48. mixpeek-0.15.1/src/mixpeek/models/get_user_organizations_users_user_email_getop.py → mixpeek-0.16.0/src/mixpeek/models/get_user_v1_organizations_users_user_email_getop.py +2 -2
  49. mixpeek-0.15.1/src/mixpeek/models/ingest_image_url_ingest_images_url_postop.py → mixpeek-0.16.0/src/mixpeek/models/ingest_image_url_v1_ingest_images_url_postop.py +2 -2
  50. mixpeek-0.15.1/src/mixpeek/models/ingest_text_ingest_text_postop.py → mixpeek-0.16.0/src/mixpeek/models/ingest_text_v1_ingest_text_postop.py +2 -2
  51. mixpeek-0.15.1/src/mixpeek/models/ingest_video_url_ingest_videos_url_postop.py → mixpeek-0.16.0/src/mixpeek/models/ingest_video_url_v1_ingest_videos_url_postop.py +2 -2
  52. mixpeek-0.15.1/src/mixpeek/models/kill_task_tasks_task_id_deleteop.py → mixpeek-0.16.0/src/mixpeek/models/kill_task_v1_tasks_task_id_deleteop.py +2 -2
  53. mixpeek-0.15.1/src/mixpeek/models/list_assets_assets_postop.py → mixpeek-0.16.0/src/mixpeek/models/list_assets_v1_assets_postop.py +2 -2
  54. mixpeek-0.16.0/src/mixpeek/models/list_classifications_v1_entities_taxonomies_taxonomy_classifications_postop.py +92 -0
  55. mixpeek-0.15.1/src/mixpeek/models/list_collections_collections_getop.py → mixpeek-0.16.0/src/mixpeek/models/list_collections_v1_collections_getop.py +2 -2
  56. mixpeek-0.15.1/src/mixpeek/models/list_features_features_postop.py → mixpeek-0.16.0/src/mixpeek/models/list_features_v1_features_postop.py +2 -2
  57. mixpeek-0.16.0/src/mixpeek/models/list_taxonomies_v1_entities_taxonomies_getop.py +67 -0
  58. mixpeek-0.16.0/src/mixpeek/models/listclassificationsrequest.py +69 -0
  59. mixpeek-0.16.0/src/mixpeek/models/listclassificationsresponse.py +31 -0
  60. mixpeek-0.16.0/src/mixpeek/models/listtaxonomiesresponse.py +24 -0
  61. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/modeldetails.py +9 -5
  62. mixpeek-0.16.0/src/mixpeek/models/nodeoptions.py +16 -0
  63. mixpeek-0.16.0/src/mixpeek/models/nodeupdate.py +51 -0
  64. mixpeek-0.15.1/src/mixpeek/models/partial_asset_update_assets_asset_id_patchop.py → mixpeek-0.16.0/src/mixpeek/models/partial_asset_update_v1_assets_asset_id_patchop.py +2 -2
  65. mixpeek-0.16.0/src/mixpeek/models/permission.py +22 -0
  66. mixpeek-0.15.1/src/mixpeek/models/search_assets_assets_search_postop.py → mixpeek-0.16.0/src/mixpeek/models/search_assets_v1_assets_search_postop.py +2 -2
  67. mixpeek-0.15.1/src/mixpeek/models/search_features_features_search_postop.py → mixpeek-0.16.0/src/mixpeek/models/search_features_v1_features_search_postop.py +4 -4
  68. mixpeek-0.16.0/src/mixpeek/models/taxonomycreate.py +20 -0
  69. mixpeek-0.16.0/src/mixpeek/models/taxonomymodel.py +27 -0
  70. mixpeek-0.16.0/src/mixpeek/models/taxonomynode.py +101 -0
  71. mixpeek-0.16.0/src/mixpeek/models/taxonomynodecreate.py +63 -0
  72. mixpeek-0.16.0/src/mixpeek/models/taxonomyupdate.py +55 -0
  73. mixpeek-0.15.1/src/mixpeek/models/update_api_key_organizations_users_user_email_api_keys_key_name_patchop.py → mixpeek-0.16.0/src/mixpeek/models/update_api_key_v1_organizations_users_user_email_api_keys_key_name_patchop.py +2 -2
  74. mixpeek-0.15.1/src/mixpeek/models/update_collection_collections_collection_putop.py → mixpeek-0.16.0/src/mixpeek/models/update_collection_v1_collections_collection_putop.py +2 -2
  75. mixpeek-0.15.1/src/mixpeek/models/update_namespace_namespaces_namespace_putop.py → mixpeek-0.16.0/src/mixpeek/models/update_namespace_v1_namespaces_namespace_putop.py +2 -2
  76. mixpeek-0.16.0/src/mixpeek/models/update_node_v1_entities_taxonomies_nodes_node_patchop.py +71 -0
  77. mixpeek-0.16.0/src/mixpeek/models/update_taxonomy_v1_entities_taxonomies_taxonomy_patchop.py +71 -0
  78. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/vectormodel.py +1 -0
  79. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/namespaces.py +56 -56
  80. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/organizations.py +82 -58
  81. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/sdk.py +12 -6
  82. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/sdkconfiguration.py +4 -4
  83. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/tasks.py +22 -16
  84. mixpeek-0.16.0/src/mixpeek/taxonomy_entities.py +2214 -0
  85. mixpeek-0.15.1/src/mixpeek/models/permission.py +0 -10
  86. {mixpeek-0.15.1 → mixpeek-0.16.0}/py.typed +0 -0
  87. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/__init__.py +0 -0
  88. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/_hooks/registration.py +0 -0
  89. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/_hooks/types.py +0 -0
  90. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/basesdk.py +0 -0
  91. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/httpclient.py +0 -0
  92. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/actionusage.py +0 -0
  93. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/apierror.py +0 -0
  94. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/apikey.py +0 -0
  95. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/apikeyupdate.py +0 -0
  96. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/assetfeatures.py +0 -0
  97. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/assetresponse.py +0 -0
  98. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/assets_model_searchquery.py +0 -0
  99. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/assetupdate.py +0 -0
  100. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/boolindexparams.py +0 -0
  101. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/collectionmodel.py +0 -0
  102. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/collectionresult.py +0 -0
  103. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/createcollectionrequest.py +0 -0
  104. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/datetimeindexparams.py +0 -0
  105. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/dateusage.py +0 -0
  106. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/db_model_paginationresponse.py +0 -0
  107. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/denseembedding.py +0 -0
  108. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/embeddingresponse.py +0 -0
  109. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/entitysettings.py +0 -0
  110. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/errordetail.py +0 -0
  111. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/errorresponse.py +0 -0
  112. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/facedetectsettings.py +0 -0
  113. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/featureextractionembeddingrequest.py +0 -0
  114. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/featureresponse.py +0 -0
  115. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/features_model_paginationresponse.py +0 -0
  116. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/featureupdaterequest.py +0 -0
  117. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/filtercondition.py +0 -0
  118. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/floatindexparams.py +0 -0
  119. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/geoindexparams.py +0 -0
  120. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/groupbyoptions.py +0 -0
  121. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/groupbyoptionsasset.py +0 -0
  122. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/groupedassetdata.py +0 -0
  123. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/healthcheckresponse.py +0 -0
  124. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/httpvalidationerror.py +0 -0
  125. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/imagedescribesettings.py +0 -0
  126. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/imagedetectsettings.py +0 -0
  127. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/imagereadsettings.py +0 -0
  128. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/imagesettings.py +0 -0
  129. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/inputtype.py +0 -0
  130. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/integerindexparams.py +0 -0
  131. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/internal/__init__.py +0 -0
  132. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/internal/globals.py +0 -0
  133. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/jsonimageoutputsettings.py +0 -0
  134. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/jsontextoutputsettings.py +0 -0
  135. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/jsonvideooutputsettings.py +0 -0
  136. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/keywordindexparams.py +0 -0
  137. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/listassetsrequest.py +0 -0
  138. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/listassetsresponse.py +0 -0
  139. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/listcollectionsresponse.py +0 -0
  140. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/listfeaturesrequest.py +0 -0
  141. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/listfeaturesresponse.py +0 -0
  142. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/logicaloperator.py +0 -0
  143. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/logodetectsettings.py +0 -0
  144. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/modality.py +0 -0
  145. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/namespaceresponse.py +0 -0
  146. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/organizationmodel.py +0 -0
  147. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/payloadindexconfig.py +0 -0
  148. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/payloadindextype.py +0 -0
  149. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/payloadschematype.py +0 -0
  150. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/processimageurlinput.py +0 -0
  151. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/processtextinput.py +0 -0
  152. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/processvideourlinput.py +0 -0
  153. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/querysettings.py +0 -0
  154. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/rerankingoptions.py +0 -0
  155. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/search_model_searchquery.py +0 -0
  156. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/searchassetsrequest.py +0 -0
  157. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/searchrequestfeatures.py +0 -0
  158. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/security.py +0 -0
  159. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/sortoption.py +0 -0
  160. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/sparseembedding.py +0 -0
  161. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/taskresponse.py +0 -0
  162. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/taskstatus.py +0 -0
  163. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/taxonomyextractionconfig.py +0 -0
  164. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/textindexparams.py +0 -0
  165. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/textsettings.py +0 -0
  166. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/tokenizertype.py +0 -0
  167. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/updateassetrequest.py +0 -0
  168. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/updatenamespacerequest.py +0 -0
  169. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/usage.py +0 -0
  170. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/usermodel_input.py +0 -0
  171. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/usermodel_output.py +0 -0
  172. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/uuidindexparams.py +0 -0
  173. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/validationerror.py +0 -0
  174. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/vectortype.py +0 -0
  175. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/videodescribesettings.py +0 -0
  176. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/videodetectsettings.py +0 -0
  177. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/videoreadsettings.py +0 -0
  178. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/videosettings.py +0 -0
  179. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/models/videotranscriptionsettings.py +0 -0
  180. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/py.typed +0 -0
  181. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/types/__init__.py +0 -0
  182. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/types/basemodel.py +0 -0
  183. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/__init__.py +0 -0
  184. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/annotations.py +0 -0
  185. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/enums.py +0 -0
  186. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/eventstreaming.py +0 -0
  187. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/forms.py +0 -0
  188. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/headers.py +0 -0
  189. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/logger.py +0 -0
  190. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/metadata.py +0 -0
  191. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/queryparams.py +0 -0
  192. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/requestbodies.py +0 -0
  193. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/retries.py +0 -0
  194. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/security.py +0 -0
  195. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/serializers.py +0 -0
  196. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/url.py +0 -0
  197. {mixpeek-0.15.1 → mixpeek-0.16.0}/src/mixpeek/utils/values.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mixpeek
3
- Version: 0.15.1
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.organizations.get()
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.organizations.get_async()
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.organizations.get()
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
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#get) - Get Asset
166
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#delete) - Delete Asset
167
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#update) - Full Asset Update
168
- * [partial_update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#partial_update) - Partial Asset Update
169
- * [get_features](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#get_features) - Get Asset With Features
170
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#list) - List Assets
171
- * [search](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#search) - Search Assets
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
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#list) - List Collections
176
- * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#create) - Create Collection
177
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#delete) - Delete Collection
178
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#update) - Update Collection
179
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#get) - Get Collection
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
- * [extract_embeddings](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featureextractors/README.md#extract_embeddings) - Extract Embeddings
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
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#get) - Get Feature
188
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#delete) - Delete Feature
189
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#update) - Full Feature Update
190
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#list) - List Features
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
- ### [ingest](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md)
199
+ ### [ingest_assets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md)
198
200
 
199
- * [text](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md#text) - Ingest Text
200
- * [video_from_url](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md#video_from_url) - Ingest Video Url
201
- * [image_url](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md#image_url) - Ingest Image Url
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
- * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#create) - Create Namespace
207
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list) - List Namespaces
208
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#delete) - Delete Namespace
209
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#update) - Update Namespace
210
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#get) - Get Namespace
211
- * [list_indexes](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list_indexes) - List Available Indexes
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
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get) - Get Organization
216
- * [get_usage](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_usage) - Get Usage
217
- * [get_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_user) - Get User
218
- * [delete_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_user) - Delete User
219
- * [add_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#add_user) - Add User
220
- * [create_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#create_api_key) - Create Api Key
221
- * [delete_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_api_key) - Delete Api Key
222
- * [update_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#update_api_key) - Update Api Key
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
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#delete) - Kill Task
227
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#get) - Get Task Information
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.organizations.get(,
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.organizations.get()
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 `get_async` method may raise the following exceptions:
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.get()
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.organizations.get()
355
+ res = mixpeek.health.check()
341
356
 
342
357
  # Handle response
343
358
  print(res)
@@ -74,7 +74,7 @@ with Mixpeek(
74
74
  token=os.getenv("MIXPEEK_TOKEN", ""),
75
75
  ) as mixpeek:
76
76
 
77
- res = mixpeek.organizations.get()
77
+ res = mixpeek.health.check()
78
78
 
79
79
  # Handle response
80
80
  print(res)
@@ -94,7 +94,7 @@ async def main():
94
94
  token=os.getenv("MIXPEEK_TOKEN", ""),
95
95
  ) as mixpeek:
96
96
 
97
- res = await mixpeek.organizations.get_async()
97
+ res = await mixpeek.health.check_async()
98
98
 
99
99
  # Handle response
100
100
  print(res)
@@ -123,7 +123,7 @@ with Mixpeek(
123
123
  token=os.getenv("MIXPEEK_TOKEN", ""),
124
124
  ) as mixpeek:
125
125
 
126
- res = mixpeek.organizations.get()
126
+ res = mixpeek.health.check()
127
127
 
128
128
  # Handle response
129
129
  print(res)
@@ -139,69 +139,85 @@ with Mixpeek(
139
139
 
140
140
  ### [assets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md)
141
141
 
142
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#get) - Get Asset
143
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#delete) - Delete Asset
144
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#update) - Full Asset Update
145
- * [partial_update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#partial_update) - Partial Asset Update
146
- * [get_features](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#get_features) - Get Asset With Features
147
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#list) - List Assets
148
- * [search](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#search) - Search Assets
142
+ * [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
143
+ * [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
144
+ * [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
145
+ * [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
146
+ * [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
147
+ * [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
148
+ * [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
149
149
 
150
150
  ### [collections](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md)
151
151
 
152
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#list) - List Collections
153
- * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#create) - Create Collection
154
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#delete) - Delete Collection
155
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#update) - Update Collection
156
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#get) - Get Collection
152
+ * [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
153
+ * [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
154
+ * [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
155
+ * [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
156
+ * [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
157
157
 
158
158
  ### [feature_extractors](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featureextractors/README.md)
159
159
 
160
- * [extract_embeddings](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featureextractors/README.md#extract_embeddings) - Extract Embeddings
160
+ * [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
161
+
162
+ ### [feature_search](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featuresearch/README.md)
163
+
164
+ * [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
161
165
 
162
166
  ### [features](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md)
163
167
 
164
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#get) - Get Feature
165
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#delete) - Delete Feature
166
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#update) - Full Feature Update
167
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#list) - List Features
168
- * [search](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#search) - Search Features
168
+ * [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
169
+ * [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
170
+ * [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
171
+ * [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
169
172
 
170
173
  ### [health](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/health/README.md)
171
174
 
172
175
  * [check](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/health/README.md#check) - Healthcheck
173
176
 
174
- ### [ingest](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md)
177
+ ### [ingest_assets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md)
175
178
 
176
- * [text](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md#text) - Ingest Text
177
- * [video_from_url](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md#video_from_url) - Ingest Video Url
178
- * [image_url](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md#image_url) - Ingest Image Url
179
+ * [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
180
+ * [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
181
+ * [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
179
182
 
180
183
 
181
184
  ### [namespaces](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md)
182
185
 
183
- * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#create) - Create Namespace
184
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list) - List Namespaces
185
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#delete) - Delete Namespace
186
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#update) - Update Namespace
187
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#get) - Get Namespace
188
- * [list_indexes](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list_indexes) - List Available Indexes
186
+ * [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
187
+ * [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
188
+ * [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
189
+ * [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
190
+ * [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
191
+ * [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
189
192
 
190
193
  ### [organizations](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md)
191
194
 
192
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get) - Get Organization
193
- * [get_usage](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_usage) - Get Usage
194
- * [get_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_user) - Get User
195
- * [delete_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_user) - Delete User
196
- * [add_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#add_user) - Add User
197
- * [create_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#create_api_key) - Create Api Key
198
- * [delete_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_api_key) - Delete Api Key
199
- * [update_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#update_api_key) - Update Api Key
195
+ * [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
196
+ * [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
197
+ * [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
198
+ * [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
199
+ * [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
200
+ * [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
201
+ * [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
202
+ * [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
200
203
 
201
204
  ### [tasks](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md)
202
205
 
203
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#delete) - Kill Task
204
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#get) - Get Task Information
206
+ * [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
207
+ * [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
208
+
209
+ ### [taxonomy_entities](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md)
210
+
211
+ * [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
212
+ * [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
213
+ * [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
214
+ * [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
215
+ * [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
216
+ * [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
217
+ * [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
218
+ * [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
219
+ * [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
220
+ * [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
205
221
 
206
222
  </details>
207
223
  <!-- End Available Resources and Operations [operations] -->
@@ -221,7 +237,7 @@ with Mixpeek(
221
237
  token=os.getenv("MIXPEEK_TOKEN", ""),
222
238
  ) as mixpeek:
223
239
 
224
- res = mixpeek.organizations.get(,
240
+ res = mixpeek.health.check(,
225
241
  RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
226
242
 
227
243
  # Handle response
@@ -240,7 +256,7 @@ with Mixpeek(
240
256
  token=os.getenv("MIXPEEK_TOKEN", ""),
241
257
  ) as mixpeek:
242
258
 
243
- res = mixpeek.organizations.get()
259
+ res = mixpeek.health.check()
244
260
 
245
261
  # Handle response
246
262
  print(res)
@@ -262,7 +278,7 @@ By default, an API error will raise a models.APIError exception, which has the f
262
278
  | `.raw_response` | *httpx.Response* | The raw HTTP response |
263
279
  | `.body` | *str* | The response content |
264
280
 
265
- 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_async` method may raise the following exceptions:
281
+ 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:
266
282
 
267
283
  | Error Type | Status Code | Content Type |
268
284
  | -------------------------- | ----------------------- | ---------------- |
@@ -282,7 +298,7 @@ with Mixpeek(
282
298
  res = None
283
299
  try:
284
300
 
285
- res = mixpeek.organizations.get()
301
+ res = mixpeek.organizations.get_organization_v1_organizations_get()
286
302
 
287
303
  # Handle response
288
304
  print(res)
@@ -310,11 +326,11 @@ from mixpeek import Mixpeek
310
326
  import os
311
327
 
312
328
  with Mixpeek(
313
- server_url="https://api.mixpeek.com/",
329
+ server_url="https://api.mixpeek.com/v1",
314
330
  token=os.getenv("MIXPEEK_TOKEN", ""),
315
331
  ) as mixpeek:
316
332
 
317
- res = mixpeek.organizations.get()
333
+ res = mixpeek.health.check()
318
334
 
319
335
  # Handle response
320
336
  print(res)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "mixpeek"
3
- version = "0.15.1"
3
+ version = "0.16.0"
4
4
  description = "Python Client SDK Generated by Speakeasy."
5
5
  authors = ["Speakeasy",]
6
6
  readme = "README-PYPI.md"
@@ -2,4 +2,3 @@
2
2
 
3
3
  from .sdkhooks import *
4
4
  from .types import *
5
- from .registration import *
@@ -11,7 +11,6 @@ from .types import (
11
11
  AfterErrorHook,
12
12
  Hooks,
13
13
  )
14
- from .registration import init_hooks
15
14
  from typing import List, Optional, Tuple
16
15
  from mixpeek.httpclient import HttpClient
17
16
 
@@ -22,7 +21,6 @@ class SDKHooks(Hooks):
22
21
  self.before_request_hooks: List[BeforeRequestHook] = []
23
22
  self.after_success_hooks: List[AfterSuccessHook] = []
24
23
  self.after_error_hooks: List[AfterErrorHook] = []
25
- init_hooks(self)
26
24
 
27
25
  def register_sdk_init_hook(self, hook: SDKInitHook) -> None:
28
26
  self.sdk_init_hooks.append(hook)
@@ -3,7 +3,7 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "mixpeek"
6
- __version__: str = "0.15.1"
6
+ __version__: str = "0.16.0"
7
7
 
8
8
  try:
9
9
  if __package__ is not None: