mixpeek 0.14.0__tar.gz → 0.16.2__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 (212) hide show
  1. {mixpeek-0.14.0 → mixpeek-0.16.2}/PKG-INFO +74 -69
  2. {mixpeek-0.14.0 → mixpeek-0.16.2}/README-PYPI.md +73 -67
  3. {mixpeek-0.14.0 → mixpeek-0.16.2}/pyproject.toml +2 -2
  4. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/_hooks/__init__.py +0 -1
  5. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/_hooks/sdkhooks.py +0 -2
  6. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/_version.py +1 -1
  7. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/assets.py +82 -64
  8. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/collections.py +50 -44
  9. mixpeek-0.14.0/src/mixpeek/featureextractors.py → mixpeek-0.16.2/src/mixpeek/feature_extractors.py +12 -12
  10. mixpeek-0.16.2/src/mixpeek/feature_search.py +334 -0
  11. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/features.py +48 -360
  12. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/health.py +3 -15
  13. mixpeek-0.14.0/src/mixpeek/ingest.py → mixpeek-0.16.2/src/mixpeek/ingest_assets.py +55 -79
  14. mixpeek-0.16.2/src/mixpeek/models/__init__.py +806 -0
  15. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/assetresponse.py +4 -4
  16. mixpeek-0.16.2/src/mixpeek/models/assignmentconfig.py +25 -0
  17. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/availablemodels.py +5 -0
  18. mixpeek-0.16.2/src/mixpeek/models/availablemodelsresponse.py +27 -0
  19. mixpeek-0.16.2/src/mixpeek/models/classificationmatch.py +72 -0
  20. mixpeek-0.16.2/src/mixpeek/models/classificationwithfeature.py +73 -0
  21. mixpeek-0.16.2/src/mixpeek/models/classify_features_v1_entities_taxonomies_taxonomy_classify_postop.py +73 -0
  22. mixpeek-0.14.0/src/mixpeek/models/create_api_key_organizations_users_user_email_api_keys_postop.py → mixpeek-0.16.2/src/mixpeek/models/create_api_key_v1_organizations_users_user_email_api_keys_postop.py +2 -2
  23. mixpeek-0.14.0/src/mixpeek/models/create_collection_collections_postop.py → mixpeek-0.16.2/src/mixpeek/models/create_collection_v1_collections_postop.py +2 -2
  24. mixpeek-0.16.2/src/mixpeek/models/create_taxonomy_v1_entities_taxonomies_postop.py +59 -0
  25. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/createnamespacerequest.py +4 -4
  26. mixpeek-0.14.0/src/mixpeek/models/delete_api_key_organizations_users_user_email_api_keys_key_name_deleteop.py → mixpeek-0.16.2/src/mixpeek/models/delete_api_key_v1_organizations_users_user_email_api_keys_key_name_deleteop.py +2 -2
  27. mixpeek-0.14.0/src/mixpeek/models/delete_asset_assets_asset_id_deleteop.py → mixpeek-0.16.2/src/mixpeek/models/delete_asset_v1_assets_asset_id_deleteop.py +2 -2
  28. mixpeek-0.14.0/src/mixpeek/models/get_interaction_features_search_interactions_interaction_id_getop.py → mixpeek-0.16.2/src/mixpeek/models/delete_classifications_v1_entities_taxonomies_taxonomy_classifications_classification_id_deleteop.py +15 -4
  29. mixpeek-0.14.0/src/mixpeek/models/delete_collection_collections_collection_deleteop.py → mixpeek-0.16.2/src/mixpeek/models/delete_collection_v1_collections_collection_deleteop.py +2 -2
  30. mixpeek-0.14.0/src/mixpeek/models/delete_feature_features_feature_id_deleteop.py → mixpeek-0.16.2/src/mixpeek/models/delete_feature_v1_features_feature_id_deleteop.py +2 -2
  31. mixpeek-0.14.0/src/mixpeek/models/delete_namespace_namespaces_namespace_deleteop.py → mixpeek-0.16.2/src/mixpeek/models/delete_namespace_v1_namespaces_namespace_deleteop.py +2 -2
  32. mixpeek-0.16.2/src/mixpeek/models/delete_taxonomy_v1_entities_taxonomies_taxonomy_deleteop.py +59 -0
  33. mixpeek-0.14.0/src/mixpeek/models/delete_user_organizations_users_user_email_deleteop.py → mixpeek-0.16.2/src/mixpeek/models/delete_user_v1_organizations_users_user_email_deleteop.py +2 -2
  34. mixpeek-0.16.2/src/mixpeek/models/discoverrequest.py +74 -0
  35. mixpeek-0.16.2/src/mixpeek/models/embeddingconfig.py +33 -0
  36. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/embeddingrequest.py +42 -9
  37. mixpeek-0.16.2/src/mixpeek/models/entitysettings.py +50 -0
  38. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/featureextractionembeddingrequest.py +2 -2
  39. mixpeek-0.16.2/src/mixpeek/models/featureoptions.py +25 -0
  40. mixpeek-0.14.0/src/mixpeek/models/full_asset_update_assets_asset_id_putop.py → mixpeek-0.16.2/src/mixpeek/models/full_asset_update_v1_assets_asset_id_putop.py +2 -2
  41. mixpeek-0.14.0/src/mixpeek/models/full_feature_update_features_feature_id_putop.py → mixpeek-0.16.2/src/mixpeek/models/full_feature_update_v1_features_feature_id_putop.py +2 -2
  42. mixpeek-0.16.2/src/mixpeek/models/genericsuccessresponse.py +17 -0
  43. mixpeek-0.14.0/src/mixpeek/models/get_asset_assets_asset_id_getop.py → mixpeek-0.16.2/src/mixpeek/models/get_asset_v1_assets_asset_id_getop.py +2 -2
  44. mixpeek-0.14.0/src/mixpeek/models/get_asset_with_features_assets_asset_id_features_getop.py → mixpeek-0.16.2/src/mixpeek/models/get_asset_with_features_v1_assets_asset_id_features_getop.py +2 -2
  45. mixpeek-0.14.0/src/mixpeek/models/get_collection_collections_collection_getop.py → mixpeek-0.16.2/src/mixpeek/models/get_collection_v1_collections_collection_getop.py +2 -2
  46. mixpeek-0.14.0/src/mixpeek/models/get_feature_features_feature_id_getop.py → mixpeek-0.16.2/src/mixpeek/models/get_feature_v1_features_feature_id_getop.py +2 -2
  47. mixpeek-0.14.0/src/mixpeek/models/get_namespace_namespaces_namespace_getop.py → mixpeek-0.16.2/src/mixpeek/models/get_namespace_v1_namespaces_namespace_getop.py +2 -2
  48. mixpeek-0.14.0/src/mixpeek/models/get_task_tasks_task_id_getop.py → mixpeek-0.16.2/src/mixpeek/models/get_task_v1_tasks_task_id_getop.py +2 -2
  49. mixpeek-0.16.2/src/mixpeek/models/get_taxonomy_node_v1_entities_taxonomies_nodes_node_getop.py +59 -0
  50. mixpeek-0.14.0/src/mixpeek/models/delete_interaction_features_search_interactions_interaction_id_deleteop.py → mixpeek-0.16.2/src/mixpeek/models/get_taxonomy_v1_entities_taxonomies_taxonomy_getop.py +6 -6
  51. mixpeek-0.14.0/src/mixpeek/models/get_user_organizations_users_user_email_getop.py → mixpeek-0.16.2/src/mixpeek/models/get_user_v1_organizations_users_user_email_getop.py +2 -2
  52. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/imagedescribesettings.py +6 -6
  53. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/imagereadsettings.py +6 -6
  54. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/imagesettings.py +17 -4
  55. mixpeek-0.14.0/src/mixpeek/models/ingest_image_url_ingest_images_url_postop.py → mixpeek-0.16.2/src/mixpeek/models/ingest_image_url_v1_ingest_images_url_postop.py +2 -2
  56. mixpeek-0.14.0/src/mixpeek/models/ingest_text_ingest_text_postop.py → mixpeek-0.16.2/src/mixpeek/models/ingest_text_v1_ingest_text_postop.py +2 -2
  57. mixpeek-0.14.0/src/mixpeek/models/ingest_video_url_ingest_videos_url_postop.py → mixpeek-0.16.2/src/mixpeek/models/ingest_video_url_v1_ingest_videos_url_postop.py +2 -2
  58. mixpeek-0.16.2/src/mixpeek/models/internal/__init__.py +5 -0
  59. mixpeek-0.16.2/src/mixpeek/models/internal/globals.py +22 -0
  60. mixpeek-0.14.0/src/mixpeek/models/kill_task_tasks_task_id_deleteop.py → mixpeek-0.16.2/src/mixpeek/models/kill_task_v1_tasks_task_id_deleteop.py +2 -2
  61. mixpeek-0.14.0/src/mixpeek/models/list_assets_assets_postop.py → mixpeek-0.16.2/src/mixpeek/models/list_assets_v1_assets_postop.py +2 -2
  62. mixpeek-0.16.2/src/mixpeek/models/list_classifications_v1_entities_taxonomies_taxonomy_classifications_postop.py +92 -0
  63. mixpeek-0.14.0/src/mixpeek/models/list_collections_collections_getop.py → mixpeek-0.16.2/src/mixpeek/models/list_collections_v1_collections_getop.py +2 -2
  64. mixpeek-0.14.0/src/mixpeek/models/list_features_features_postop.py → mixpeek-0.16.2/src/mixpeek/models/list_features_v1_features_postop.py +2 -2
  65. mixpeek-0.16.2/src/mixpeek/models/list_taxonomies_v1_entities_taxonomies_getop.py +67 -0
  66. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/listassetsrequest.py +3 -3
  67. mixpeek-0.16.2/src/mixpeek/models/listclassificationsrequest.py +69 -0
  68. mixpeek-0.16.2/src/mixpeek/models/listclassificationsresponse.py +31 -0
  69. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/listfeaturesrequest.py +3 -3
  70. mixpeek-0.16.2/src/mixpeek/models/listtaxonomiesresponse.py +24 -0
  71. mixpeek-0.14.0/src/mixpeek/models/logicaloperator_input.py → mixpeek-0.16.2/src/mixpeek/models/logicaloperator.py +8 -8
  72. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/modeldetails.py +9 -5
  73. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/namespaceresponse.py +2 -2
  74. mixpeek-0.16.2/src/mixpeek/models/nodeoptions.py +16 -0
  75. mixpeek-0.16.2/src/mixpeek/models/nodeupdate.py +51 -0
  76. mixpeek-0.14.0/src/mixpeek/models/partial_asset_update_assets_asset_id_patchop.py → mixpeek-0.16.2/src/mixpeek/models/partial_asset_update_v1_assets_asset_id_patchop.py +2 -2
  77. mixpeek-0.16.2/src/mixpeek/models/permission.py +22 -0
  78. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/processimageurlinput.py +1 -13
  79. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/processtextinput.py +1 -13
  80. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/processvideourlinput.py +1 -13
  81. mixpeek-0.14.0/src/mixpeek/models/search_assets_assets_search_postop.py → mixpeek-0.16.2/src/mixpeek/models/search_assets_v1_assets_search_postop.py +2 -2
  82. mixpeek-0.14.0/src/mixpeek/models/search_features_features_search_postop.py → mixpeek-0.16.2/src/mixpeek/models/search_features_v1_features_search_postop.py +8 -11
  83. mixpeek-0.14.0/src/mixpeek/models/search_model_searchquery_input.py → mixpeek-0.16.2/src/mixpeek/models/search_model_searchquery.py +7 -7
  84. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/searchassetsrequest.py +3 -3
  85. mixpeek-0.14.0/src/mixpeek/models/searchrequestfeatures_input.py → mixpeek-0.16.2/src/mixpeek/models/searchrequestfeatures.py +17 -15
  86. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/security.py +2 -2
  87. mixpeek-0.16.2/src/mixpeek/models/taskresponse.py +55 -0
  88. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/taskstatus.py +1 -0
  89. mixpeek-0.16.2/src/mixpeek/models/taxonomycreate.py +20 -0
  90. mixpeek-0.16.2/src/mixpeek/models/taxonomyextractionconfig.py +31 -0
  91. mixpeek-0.16.2/src/mixpeek/models/taxonomymodel.py +27 -0
  92. mixpeek-0.16.2/src/mixpeek/models/taxonomynode.py +101 -0
  93. mixpeek-0.16.2/src/mixpeek/models/taxonomynodecreate.py +63 -0
  94. mixpeek-0.16.2/src/mixpeek/models/taxonomyupdate.py +55 -0
  95. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/textsettings.py +10 -4
  96. mixpeek-0.14.0/src/mixpeek/models/update_api_key_organizations_users_user_email_api_keys_key_name_patchop.py → mixpeek-0.16.2/src/mixpeek/models/update_api_key_v1_organizations_users_user_email_api_keys_key_name_patchop.py +2 -2
  97. mixpeek-0.14.0/src/mixpeek/models/update_collection_collections_collection_putop.py → mixpeek-0.16.2/src/mixpeek/models/update_collection_v1_collections_collection_putop.py +2 -2
  98. mixpeek-0.14.0/src/mixpeek/models/update_namespace_namespaces_namespace_putop.py → mixpeek-0.16.2/src/mixpeek/models/update_namespace_v1_namespaces_namespace_putop.py +2 -2
  99. mixpeek-0.16.2/src/mixpeek/models/update_node_v1_entities_taxonomies_nodes_node_patchop.py +71 -0
  100. mixpeek-0.16.2/src/mixpeek/models/update_taxonomy_v1_entities_taxonomies_taxonomy_patchop.py +71 -0
  101. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/vectormodel.py +5 -0
  102. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/videodescribesettings.py +6 -6
  103. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/videoreadsettings.py +6 -6
  104. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/videosettings.py +17 -3
  105. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/videotranscriptionsettings.py +6 -6
  106. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/namespaces.py +60 -60
  107. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/organizations.py +82 -58
  108. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/sdk.py +27 -17
  109. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/sdkconfiguration.py +6 -4
  110. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/tasks.py +26 -20
  111. mixpeek-0.16.2/src/mixpeek/taxonomy_entities.py +2214 -0
  112. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/security.py +2 -2
  113. mixpeek-0.14.0/src/mixpeek/interactions.py +0 -228
  114. mixpeek-0.14.0/src/mixpeek/models/__init__.py +0 -756
  115. mixpeek-0.14.0/src/mixpeek/models/availableindexesresponse.py +0 -23
  116. mixpeek-0.14.0/src/mixpeek/models/create_interaction_features_search_interactions_postop.py +0 -59
  117. mixpeek-0.14.0/src/mixpeek/models/db_model_taskresponse.py +0 -20
  118. mixpeek-0.14.0/src/mixpeek/models/interactionresponse.py +0 -87
  119. mixpeek-0.14.0/src/mixpeek/models/interactiontype.py +0 -11
  120. mixpeek-0.14.0/src/mixpeek/models/list_interactions_features_search_interactions_getop.py +0 -96
  121. mixpeek-0.14.0/src/mixpeek/models/logicaloperator_output.py +0 -103
  122. mixpeek-0.14.0/src/mixpeek/models/percolaterequest.py +0 -57
  123. mixpeek-0.14.0/src/mixpeek/models/permission.py +0 -10
  124. mixpeek-0.14.0/src/mixpeek/models/searchinteraction.py +0 -82
  125. mixpeek-0.14.0/src/mixpeek/models/searchquery_output.py +0 -79
  126. mixpeek-0.14.0/src/mixpeek/models/searchrequestfeatures_output.py +0 -151
  127. mixpeek-0.14.0/src/mixpeek/models/tasks_model_taskresponse.py +0 -24
  128. mixpeek-0.14.0/src/mixpeek/searchinteractions.py +0 -666
  129. {mixpeek-0.14.0 → mixpeek-0.16.2}/py.typed +0 -0
  130. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/__init__.py +0 -0
  131. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/_hooks/registration.py +0 -0
  132. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/_hooks/types.py +0 -0
  133. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/basesdk.py +0 -0
  134. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/httpclient.py +0 -0
  135. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/actionusage.py +0 -0
  136. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/apierror.py +0 -0
  137. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/apikey.py +0 -0
  138. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/apikeyupdate.py +0 -0
  139. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/assetfeatures.py +0 -0
  140. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/assets_model_searchquery.py +0 -0
  141. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/assetupdate.py +0 -0
  142. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/boolindexparams.py +0 -0
  143. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/collectionmodel.py +0 -0
  144. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/collectionresult.py +0 -0
  145. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/createcollectionrequest.py +0 -0
  146. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/datetimeindexparams.py +0 -0
  147. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/dateusage.py +0 -0
  148. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/db_model_paginationresponse.py +0 -0
  149. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/denseembedding.py +0 -0
  150. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/embeddingresponse.py +0 -0
  151. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/errordetail.py +0 -0
  152. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/errorresponse.py +0 -0
  153. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/facedetectsettings.py +0 -0
  154. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/featureresponse.py +0 -0
  155. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/features_model_paginationresponse.py +0 -0
  156. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/featureupdaterequest.py +0 -0
  157. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/filtercondition.py +0 -0
  158. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/floatindexparams.py +0 -0
  159. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/geoindexparams.py +0 -0
  160. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/groupbyoptions.py +0 -0
  161. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/groupbyoptionsasset.py +0 -0
  162. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/groupedassetdata.py +0 -0
  163. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/healthcheckresponse.py +0 -0
  164. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/httpvalidationerror.py +0 -0
  165. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/imagedetectsettings.py +0 -0
  166. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/inputtype.py +0 -0
  167. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/integerindexparams.py +0 -0
  168. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/jsonimageoutputsettings.py +0 -0
  169. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/jsontextoutputsettings.py +0 -0
  170. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/jsonvideooutputsettings.py +0 -0
  171. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/keywordindexparams.py +0 -0
  172. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/listassetsresponse.py +0 -0
  173. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/listcollectionsresponse.py +0 -0
  174. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/listfeaturesresponse.py +0 -0
  175. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/logodetectsettings.py +0 -0
  176. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/modality.py +0 -0
  177. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/organizationmodel.py +0 -0
  178. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/payloadindexconfig.py +0 -0
  179. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/payloadindextype.py +0 -0
  180. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/payloadschematype.py +0 -0
  181. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/querysettings.py +0 -0
  182. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/rerankingoptions.py +0 -0
  183. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/sortoption.py +0 -0
  184. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/sparseembedding.py +0 -0
  185. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/textindexparams.py +0 -0
  186. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/tokenizertype.py +0 -0
  187. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/updateassetrequest.py +0 -0
  188. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/updatenamespacerequest.py +0 -0
  189. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/usage.py +0 -0
  190. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/usermodel_input.py +0 -0
  191. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/usermodel_output.py +0 -0
  192. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/uuidindexparams.py +0 -0
  193. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/validationerror.py +0 -0
  194. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/vectortype.py +0 -0
  195. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/models/videodetectsettings.py +0 -0
  196. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/py.typed +0 -0
  197. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/types/__init__.py +0 -0
  198. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/types/basemodel.py +0 -0
  199. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/__init__.py +0 -0
  200. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/annotations.py +0 -0
  201. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/enums.py +0 -0
  202. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/eventstreaming.py +0 -0
  203. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/forms.py +0 -0
  204. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/headers.py +0 -0
  205. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/logger.py +0 -0
  206. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/metadata.py +0 -0
  207. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/queryparams.py +0 -0
  208. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/requestbodies.py +0 -0
  209. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/retries.py +0 -0
  210. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/serializers.py +0 -0
  211. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/url.py +0 -0
  212. {mixpeek-0.14.0 → mixpeek-0.16.2}/src/mixpeek/utils/values.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mixpeek
3
- Version: 0.14.0
3
+ Version: 0.16.2
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)
@@ -94,10 +93,10 @@ from mixpeek import Mixpeek
94
93
  import os
95
94
 
96
95
  with Mixpeek(
97
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
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)
@@ -114,10 +113,10 @@ import os
114
113
 
115
114
  async def main():
116
115
  async with Mixpeek(
117
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
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)
@@ -133,20 +132,20 @@ asyncio.run(main())
133
132
 
134
133
  This SDK supports the following security scheme globally:
135
134
 
136
- | Name | Type | Scheme | Environment Variable |
137
- | ------------- | ---- | ----------- | --------------------- |
138
- | `bearer_auth` | http | HTTP Bearer | `MIXPEEK_BEARER_AUTH` |
135
+ | Name | Type | Scheme | Environment Variable |
136
+ | ------- | ---- | ----------- | -------------------- |
137
+ | `token` | http | HTTP Bearer | `MIXPEEK_TOKEN` |
139
138
 
140
- To authenticate with the API the `bearer_auth` parameter must be set when initializing the SDK client instance. For example:
139
+ To authenticate with the API the `token` parameter must be set when initializing the SDK client instance. For example:
141
140
  ```python
142
141
  from mixpeek import Mixpeek
143
142
  import os
144
143
 
145
144
  with Mixpeek(
146
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
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,79 +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)
198
-
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
199
+ ### [ingest_assets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md)
202
200
 
203
- ### [interactions](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/interactions/README.md)
204
-
205
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/interactions/README.md#list) - List Interactions
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
206
204
 
207
205
 
208
206
  ### [namespaces](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md)
209
207
 
210
- * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#create) - Create Namespace
211
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list) - List Namespaces
212
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#delete) - Delete Namespace
213
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#update) - Update Namespace
214
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#get) - Get Namespace
215
- * [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
216
214
 
217
215
  ### [organizations](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md)
218
216
 
219
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get) - Get Organization
220
- * [get_usage](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_usage) - Get Usage
221
- * [get_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_user) - Get User
222
- * [delete_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_user) - Delete User
223
- * [add_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#add_user) - Add User
224
- * [create_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#create_api_key) - Create Api Key
225
- * [delete_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_api_key) - Delete Api Key
226
- * [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
227
225
 
228
- ### [search_interactions](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md)
226
+ ### [tasks](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md)
229
227
 
230
- * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md#create) - Create Interaction
231
- * [get_interaction](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md#get_interaction) - Get Interaction
232
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md#delete) - Delete Interaction
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
233
230
 
234
- ### [tasks](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md)
231
+ ### [taxonomy_entities](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md)
235
232
 
236
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#delete) - Kill Task
237
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#get) - Get Task Information
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
238
243
 
239
244
  </details>
240
245
  <!-- End Available Resources and Operations [operations] -->
@@ -251,10 +256,10 @@ from mixpeek.utils import BackoffStrategy, RetryConfig
251
256
  import os
252
257
 
253
258
  with Mixpeek(
254
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
259
+ token=os.getenv("MIXPEEK_TOKEN", ""),
255
260
  ) as mixpeek:
256
261
 
257
- res = mixpeek.organizations.get(,
262
+ res = mixpeek.health.check(,
258
263
  RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
259
264
 
260
265
  # Handle response
@@ -270,10 +275,10 @@ import os
270
275
 
271
276
  with Mixpeek(
272
277
  retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
273
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
278
+ token=os.getenv("MIXPEEK_TOKEN", ""),
274
279
  ) as mixpeek:
275
280
 
276
- res = mixpeek.organizations.get()
281
+ res = mixpeek.health.check()
277
282
 
278
283
  # Handle response
279
284
  print(res)
@@ -295,7 +300,7 @@ By default, an API error will raise a models.APIError exception, which has the f
295
300
  | `.raw_response` | *httpx.Response* | The raw HTTP response |
296
301
  | `.body` | *str* | The response content |
297
302
 
298
- 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:
299
304
 
300
305
  | Error Type | Status Code | Content Type |
301
306
  | -------------------------- | ----------------------- | ---------------- |
@@ -310,12 +315,12 @@ from mixpeek import Mixpeek, models
310
315
  import os
311
316
 
312
317
  with Mixpeek(
313
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
318
+ token=os.getenv("MIXPEEK_TOKEN", ""),
314
319
  ) as mixpeek:
315
320
  res = None
316
321
  try:
317
322
 
318
- res = mixpeek.organizations.get()
323
+ res = mixpeek.organizations.get_organization_v1_organizations_get()
319
324
 
320
325
  # Handle response
321
326
  print(res)
@@ -343,11 +348,11 @@ from mixpeek import Mixpeek
343
348
  import os
344
349
 
345
350
  with Mixpeek(
346
- server_url="https://api.mixpeek.com/",
347
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
351
+ server_url="https://api.mixpeek.com",
352
+ token=os.getenv("MIXPEEK_TOKEN", ""),
348
353
  ) as mixpeek:
349
354
 
350
- res = mixpeek.organizations.get()
355
+ res = mixpeek.health.check()
351
356
 
352
357
  # Handle response
353
358
  print(res)
@@ -71,10 +71,10 @@ from mixpeek import Mixpeek
71
71
  import os
72
72
 
73
73
  with Mixpeek(
74
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
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)
@@ -91,10 +91,10 @@ import os
91
91
 
92
92
  async def main():
93
93
  async with Mixpeek(
94
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
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)
@@ -110,20 +110,20 @@ asyncio.run(main())
110
110
 
111
111
  This SDK supports the following security scheme globally:
112
112
 
113
- | Name | Type | Scheme | Environment Variable |
114
- | ------------- | ---- | ----------- | --------------------- |
115
- | `bearer_auth` | http | HTTP Bearer | `MIXPEEK_BEARER_AUTH` |
113
+ | Name | Type | Scheme | Environment Variable |
114
+ | ------- | ---- | ----------- | -------------------- |
115
+ | `token` | http | HTTP Bearer | `MIXPEEK_TOKEN` |
116
116
 
117
- To authenticate with the API the `bearer_auth` parameter must be set when initializing the SDK client instance. For example:
117
+ To authenticate with the API the `token` parameter must be set when initializing the SDK client instance. For example:
118
118
  ```python
119
119
  from mixpeek import Mixpeek
120
120
  import os
121
121
 
122
122
  with Mixpeek(
123
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
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,79 +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)
175
-
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
177
+ ### [ingest_assets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md)
179
178
 
180
- ### [interactions](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/interactions/README.md)
181
-
182
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/interactions/README.md#list) - List Interactions
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
183
182
 
184
183
 
185
184
  ### [namespaces](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md)
186
185
 
187
- * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#create) - Create Namespace
188
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list) - List Namespaces
189
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#delete) - Delete Namespace
190
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#update) - Update Namespace
191
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#get) - Get Namespace
192
- * [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
193
192
 
194
193
  ### [organizations](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md)
195
194
 
196
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get) - Get Organization
197
- * [get_usage](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_usage) - Get Usage
198
- * [get_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_user) - Get User
199
- * [delete_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_user) - Delete User
200
- * [add_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#add_user) - Add User
201
- * [create_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#create_api_key) - Create Api Key
202
- * [delete_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_api_key) - Delete Api Key
203
- * [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
204
203
 
205
- ### [search_interactions](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md)
204
+ ### [tasks](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md)
206
205
 
207
- * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md#create) - Create Interaction
208
- * [get_interaction](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md#get_interaction) - Get Interaction
209
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md#delete) - Delete Interaction
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
210
208
 
211
- ### [tasks](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md)
209
+ ### [taxonomy_entities](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md)
212
210
 
213
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#delete) - Kill Task
214
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#get) - Get Task Information
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
215
221
 
216
222
  </details>
217
223
  <!-- End Available Resources and Operations [operations] -->
@@ -228,10 +234,10 @@ from mixpeek.utils import BackoffStrategy, RetryConfig
228
234
  import os
229
235
 
230
236
  with Mixpeek(
231
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
237
+ token=os.getenv("MIXPEEK_TOKEN", ""),
232
238
  ) as mixpeek:
233
239
 
234
- res = mixpeek.organizations.get(,
240
+ res = mixpeek.health.check(,
235
241
  RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
236
242
 
237
243
  # Handle response
@@ -247,10 +253,10 @@ import os
247
253
 
248
254
  with Mixpeek(
249
255
  retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
250
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
256
+ token=os.getenv("MIXPEEK_TOKEN", ""),
251
257
  ) as mixpeek:
252
258
 
253
- res = mixpeek.organizations.get()
259
+ res = mixpeek.health.check()
254
260
 
255
261
  # Handle response
256
262
  print(res)
@@ -272,7 +278,7 @@ By default, an API error will raise a models.APIError exception, which has the f
272
278
  | `.raw_response` | *httpx.Response* | The raw HTTP response |
273
279
  | `.body` | *str* | The response content |
274
280
 
275
- 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:
276
282
 
277
283
  | Error Type | Status Code | Content Type |
278
284
  | -------------------------- | ----------------------- | ---------------- |
@@ -287,12 +293,12 @@ from mixpeek import Mixpeek, models
287
293
  import os
288
294
 
289
295
  with Mixpeek(
290
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
296
+ token=os.getenv("MIXPEEK_TOKEN", ""),
291
297
  ) as mixpeek:
292
298
  res = None
293
299
  try:
294
300
 
295
- res = mixpeek.organizations.get()
301
+ res = mixpeek.organizations.get_organization_v1_organizations_get()
296
302
 
297
303
  # Handle response
298
304
  print(res)
@@ -320,11 +326,11 @@ from mixpeek import Mixpeek
320
326
  import os
321
327
 
322
328
  with Mixpeek(
323
- server_url="https://api.mixpeek.com/",
324
- bearer_auth=os.getenv("MIXPEEK_BEARER_AUTH", ""),
329
+ server_url="https://api.mixpeek.com",
330
+ token=os.getenv("MIXPEEK_TOKEN", ""),
325
331
  ) as mixpeek:
326
332
 
327
- res = mixpeek.organizations.get()
333
+ res = mixpeek.health.check()
328
334
 
329
335
  # Handle response
330
336
  print(res)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "mixpeek"
3
- version = "0.14.0"
3
+ version = "0.16.2"
4
4
  description = "Python Client SDK Generated by Speakeasy."
5
5
  authors = ["Speakeasy",]
6
6
  readme = "README-PYPI.md"
@@ -26,7 +26,7 @@ python-dateutil = "^2.8.2"
26
26
  typing-inspect = "^0.9.0"
27
27
 
28
28
  [tool.poetry.group.dev.dependencies]
29
- mypy = "==1.13.0"
29
+ mypy = "==1.14.1"
30
30
  pylint = "==3.2.3"
31
31
  types-python-dateutil = "^2.9.0.20240316"
32
32
 
@@ -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.14.0"
6
+ __version__: str = "0.16.2"
7
7
 
8
8
  try:
9
9
  if __package__ is not None: