mixpeek 0.20.20__tar.gz → 0.21.1__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 (294) hide show
  1. {mixpeek-0.20.20 → mixpeek-0.21.1}/PKG-INFO +68 -50
  2. {mixpeek-0.20.20 → mixpeek-0.21.1}/README-PYPI.md +66 -48
  3. {mixpeek-0.20.20 → mixpeek-0.21.1}/pyproject.toml +3 -3
  4. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/_version.py +3 -3
  5. mixpeek-0.20.20/src/mixpeek/features.py → mixpeek-0.21.1/src/mixpeek/bucket_objects.py +311 -329
  6. mixpeek-0.21.1/src/mixpeek/buckets.py +1292 -0
  7. mixpeek-0.21.1/src/mixpeek/clusters.py +306 -0
  8. mixpeek-0.20.20/src/mixpeek/taxonomies.py → mixpeek-0.21.1/src/mixpeek/collection_cache.py +206 -126
  9. mixpeek-0.20.20/src/mixpeek/collections.py → mixpeek-0.21.1/src/mixpeek/collection_documents.py +319 -219
  10. mixpeek-0.21.1/src/mixpeek/collections.py +590 -0
  11. mixpeek-0.21.1/src/mixpeek/features.py +448 -0
  12. mixpeek-0.21.1/src/mixpeek/models/__init__.py +892 -0
  13. mixpeek-0.21.1/src/mixpeek/models/aggregationtype.py +13 -0
  14. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/apikeyupdate.py +1 -1
  15. mixpeek-0.21.1/src/mixpeek/models/attributebasedconfig.py +21 -0
  16. mixpeek-0.21.1/src/mixpeek/models/automaticnaming.py +29 -0
  17. mixpeek-0.21.1/src/mixpeek/models/basicfeatureextractor.py +35 -0
  18. mixpeek-0.20.20/src/mixpeek/models/classify_features_v1_entities_taxonomies_taxonomy_classify_postop.py → mixpeek-0.21.1/src/mixpeek/models/batch_delete_documents_v1_collections_collection_identifier_documents_batch_deleteop.py +17 -15
  19. mixpeek-0.20.20/src/mixpeek/models/update_collection_v1_collections_collection_putop.py → mixpeek-0.21.1/src/mixpeek/models/batch_update_documents_v1_collections_collection_identifier_documents_batch_putop.py +29 -19
  20. mixpeek-0.21.1/src/mixpeek/models/blobdetails.py +72 -0
  21. mixpeek-0.21.1/src/mixpeek/models/blobmodel.py +107 -0
  22. mixpeek-0.21.1/src/mixpeek/models/bucketcreaterequest.py +75 -0
  23. mixpeek-0.21.1/src/mixpeek/models/bucketresponse.py +90 -0
  24. mixpeek-0.21.1/src/mixpeek/models/bucketschema_input.py +37 -0
  25. mixpeek-0.21.1/src/mixpeek/models/bucketschema_output.py +37 -0
  26. mixpeek-0.20.20/src/mixpeek/models/featureresponse.py → mixpeek-0.21.1/src/mixpeek/models/bucketschemafield_input.py +45 -18
  27. mixpeek-0.21.1/src/mixpeek/models/bucketschemafield_output.py +101 -0
  28. mixpeek-0.21.1/src/mixpeek/models/bucketschemafieldtype.py +29 -0
  29. mixpeek-0.21.1/src/mixpeek/models/bucketupdaterequest.py +68 -0
  30. mixpeek-0.21.1/src/mixpeek/models/cachestats.py +40 -0
  31. mixpeek-0.20.20/src/mixpeek/models/list_collections_v1_collections_getop.py → mixpeek-0.21.1/src/mixpeek/models/cleanup_cache_v1_collections_cache_cleanup_postop.py +23 -12
  32. mixpeek-0.20.20/src/mixpeek/models/inputtype.py → mixpeek-0.21.1/src/mixpeek/models/clusteringmethod.py +3 -5
  33. mixpeek-0.21.1/src/mixpeek/models/clustertype.py +9 -0
  34. mixpeek-0.21.1/src/mixpeek/models/collectioncacheconfig_input.py +92 -0
  35. mixpeek-0.21.1/src/mixpeek/models/collectioncacheconfig_output.py +92 -0
  36. mixpeek-0.21.1/src/mixpeek/models/collectionconfig.py +32 -0
  37. mixpeek-0.21.1/src/mixpeek/models/collectionmodel.py +141 -0
  38. mixpeek-0.20.20/src/mixpeek/models/create_taxonomy_v1_entities_taxonomies_postop.py → mixpeek-0.21.1/src/mixpeek/models/create_bucket_v1_buckets_create_postop.py +7 -7
  39. mixpeek-0.20.20/src/mixpeek/models/search_assets_v1_assets_search_postop.py → mixpeek-0.21.1/src/mixpeek/models/create_cluster_v1_clusters_postop.py +7 -7
  40. mixpeek-0.20.20/src/mixpeek/models/create_collection_v1_collections_postop.py → mixpeek-0.21.1/src/mixpeek/models/create_collection_v1_collections_create_postop.py +3 -3
  41. mixpeek-0.20.20/src/mixpeek/models/ingest_video_url_v1_ingest_videos_url_postop.py → mixpeek-0.21.1/src/mixpeek/models/create_interaction_v1_retrievers_interactions_postop.py +7 -7
  42. mixpeek-0.20.20/src/mixpeek/models/partial_asset_update_v1_assets_asset_id_patchop.py → mixpeek-0.21.1/src/mixpeek/models/create_object_v1_buckets_bucket_identifier_objects_create_postop.py +11 -9
  43. mixpeek-0.20.20/src/mixpeek/models/ingest_text_v1_ingest_text_postop.py → mixpeek-0.21.1/src/mixpeek/models/create_retriever_v1_retrievers_retrievers_postop.py +10 -7
  44. mixpeek-0.20.20/src/mixpeek/models/ingest_image_url_v1_ingest_images_url_postop.py → mixpeek-0.21.1/src/mixpeek/models/create_taxonomy_v1_taxonomies_postop.py +7 -7
  45. mixpeek-0.21.1/src/mixpeek/models/createblobrequest.py +80 -0
  46. mixpeek-0.21.1/src/mixpeek/models/createclusterrequest.py +74 -0
  47. mixpeek-0.21.1/src/mixpeek/models/createcollectionrequest.py +128 -0
  48. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/createnamespacerequest.py +14 -8
  49. mixpeek-0.21.1/src/mixpeek/models/createobjectrequest.py +75 -0
  50. mixpeek-0.21.1/src/mixpeek/models/createretrieverrequest.py +90 -0
  51. mixpeek-0.20.20/src/mixpeek/models/taxonomyupdate.py → mixpeek-0.21.1/src/mixpeek/models/createtaxonomyrequest.py +15 -13
  52. mixpeek-0.20.20/src/mixpeek/models/delete_asset_v1_assets_asset_id_deleteop.py → mixpeek-0.21.1/src/mixpeek/models/delete_bucket_v1_buckets_bucket_identifier_deleteop.py +5 -5
  53. mixpeek-0.20.20/src/mixpeek/models/delete_classifications_v1_entities_taxonomies_taxonomy_classifications_classification_id_deleteop.py → mixpeek-0.21.1/src/mixpeek/models/delete_document_v1_collections_collection_identifier_documents_document_id_deleteop.py +11 -11
  54. mixpeek-0.21.1/src/mixpeek/models/delete_interaction_v1_retrievers_interactions_interaction_id_deleteop.py +59 -0
  55. mixpeek-0.21.1/src/mixpeek/models/delete_object_v1_buckets_bucket_identifier_objects_object_identifier_deleteop.py +70 -0
  56. mixpeek-0.20.20/src/mixpeek/models/jsonimageoutputsettings.py → mixpeek-0.21.1/src/mixpeek/models/documenthandlingconfig.py +12 -16
  57. mixpeek-0.21.1/src/mixpeek/models/documentinputhandling.py +11 -0
  58. mixpeek-0.20.20/src/mixpeek/models/collectionresult.py → mixpeek-0.21.1/src/mixpeek/models/documentlistresponse.py +15 -17
  59. mixpeek-0.21.1/src/mixpeek/models/documentoutputhandling.py +10 -0
  60. mixpeek-0.21.1/src/mixpeek/models/documentoutputtype.py +11 -0
  61. mixpeek-0.21.1/src/mixpeek/models/documentresponse.py +87 -0
  62. mixpeek-0.20.20/src/mixpeek/models/nodeupdate.py → mixpeek-0.21.1/src/mixpeek/models/documentupdate.py +22 -13
  63. mixpeek-0.21.1/src/mixpeek/models/enrichmentfield.py +25 -0
  64. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/errordetail.py +1 -1
  65. mixpeek-0.20.20/src/mixpeek/models/update_node_v1_entities_taxonomies_nodes_node_patchop.py → mixpeek-0.21.1/src/mixpeek/models/execute_retriever_v1_retrievers_retrievers_retriever_id_execute_postop.py +11 -11
  66. mixpeek-0.21.1/src/mixpeek/models/featureextractorconfig.py +116 -0
  67. mixpeek-0.21.1/src/mixpeek/models/featureextractordefinition.py +192 -0
  68. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/filtercondition.py +25 -25
  69. mixpeek-0.21.1/src/mixpeek/models/filteroperator.py +24 -0
  70. mixpeek-0.21.1/src/mixpeek/models/generativemodels.py +10 -0
  71. mixpeek-0.20.20/src/mixpeek/models/delete_feature_v1_features_feature_id_deleteop.py → mixpeek-0.21.1/src/mixpeek/models/get_bucket_v1_buckets_bucket_identifier_getop.py +5 -5
  72. mixpeek-0.20.20/src/mixpeek/models/list_taxonomies_v1_entities_taxonomies_getop.py → mixpeek-0.21.1/src/mixpeek/models/get_cache_stats_v1_collections_cache_stats_getop.py +16 -14
  73. mixpeek-0.20.20/src/mixpeek/models/get_taxonomy_v1_entities_taxonomies_taxonomy_getop.py → mixpeek-0.21.1/src/mixpeek/models/get_collection_v1_collections_collection_id_getop.py +7 -7
  74. mixpeek-0.21.1/src/mixpeek/models/get_document_v1_collections_collection_identifier_documents_document_id_getop.py +70 -0
  75. mixpeek-0.21.1/src/mixpeek/models/get_feature_extractor_v1_features_extractors_feature_id_getop.py +16 -0
  76. mixpeek-0.21.1/src/mixpeek/models/get_interaction_v1_retrievers_interactions_interaction_id_getop.py +57 -0
  77. mixpeek-0.20.20/src/mixpeek/models/delete_collection_v1_collections_collection_deleteop.py → mixpeek-0.21.1/src/mixpeek/models/get_object_v1_buckets_bucket_identifier_objects_object_identifier_getop.py +16 -7
  78. mixpeek-0.21.1/src/mixpeek/models/get_research_v1_research_getop.py +52 -0
  79. mixpeek-0.21.1/src/mixpeek/models/get_retriever_stages_v1_retrievers_stages_getop.py +52 -0
  80. mixpeek-0.21.1/src/mixpeek/models/get_retriever_v1_retrievers_retrievers_retriever_id_getop.py +57 -0
  81. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/get_task_v1_tasks_task_id_getop.py +1 -1
  82. mixpeek-0.21.1/src/mixpeek/models/getusagerequestmodel.py +91 -0
  83. mixpeek-0.21.1/src/mixpeek/models/hdbscanparameters.py +26 -0
  84. mixpeek-0.21.1/src/mixpeek/models/interactionresponse.py +86 -0
  85. mixpeek-0.21.1/src/mixpeek/models/interactiontype.py +22 -0
  86. mixpeek-0.20.20/src/mixpeek/models/search_features_v1_features_search_postop.py → mixpeek-0.21.1/src/mixpeek/models/invalidate_cache_v1_collections_cache_invalidate_postop.py +60 -34
  87. mixpeek-0.21.1/src/mixpeek/models/invalidationevent.py +67 -0
  88. mixpeek-0.21.1/src/mixpeek/models/invalidationstrategy.py +12 -0
  89. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/kill_task_v1_tasks_task_id_deleteop.py +1 -1
  90. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/list_active_tasks_v1_tasks_getop.py +1 -1
  91. mixpeek-0.20.20/src/mixpeek/models/list_assets_v1_assets_postop.py → mixpeek-0.21.1/src/mixpeek/models/list_buckets_v1_buckets_postop.py +18 -18
  92. mixpeek-0.20.20/src/mixpeek/models/list_features_v1_features_postop.py → mixpeek-0.21.1/src/mixpeek/models/list_documents_v1_collections_collection_identifier_documents_getop.py +54 -19
  93. mixpeek-0.21.1/src/mixpeek/models/list_interactions_v1_retrievers_interactions_getop.py +96 -0
  94. mixpeek-0.20.20/src/mixpeek/models/list_classifications_v1_entities_taxonomies_taxonomy_classifications_postop.py → mixpeek-0.21.1/src/mixpeek/models/list_objects_v1_buckets_bucket_identifier_objects_postop.py +22 -29
  95. mixpeek-0.20.20/src/mixpeek/models/groupbyoptionsasset.py → mixpeek-0.21.1/src/mixpeek/models/listbucketsrequest.py +19 -28
  96. mixpeek-0.21.1/src/mixpeek/models/listbucketsresponse.py +23 -0
  97. mixpeek-0.20.20/src/mixpeek/models/groupbyoptions.py → mixpeek-0.21.1/src/mixpeek/models/listobjectsrequest.py +19 -28
  98. mixpeek-0.21.1/src/mixpeek/models/listobjectsresponse.py +25 -0
  99. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/listtasksresponse.py +3 -6
  100. mixpeek-0.20.20/src/mixpeek/models/logicaloperator.py → mixpeek-0.21.1/src/mixpeek/models/logicaloperator_input.py +42 -24
  101. mixpeek-0.21.1/src/mixpeek/models/logicaloperator_output.py +121 -0
  102. mixpeek-0.21.1/src/mixpeek/models/multivectorindex.py +25 -0
  103. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/namespaceresponse.py +1 -1
  104. mixpeek-0.21.1/src/mixpeek/models/namespaceusage.py +45 -0
  105. mixpeek-0.21.1/src/mixpeek/models/namingmethod.py +8 -0
  106. mixpeek-0.21.1/src/mixpeek/models/objectresponse.py +124 -0
  107. mixpeek-0.20.20/src/mixpeek/models/db_model_paginationresponse.py → mixpeek-0.21.1/src/mixpeek/models/paginationresponse.py +3 -3
  108. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/payloadindexconfig.py +1 -1
  109. mixpeek-0.21.1/src/mixpeek/models/plan.py +82 -0
  110. mixpeek-0.21.1/src/mixpeek/models/recomputestrategy.py +12 -0
  111. mixpeek-0.21.1/src/mixpeek/models/resourcetotals.py +39 -0
  112. mixpeek-0.21.1/src/mixpeek/models/retrieverbinding.py +63 -0
  113. mixpeek-0.20.20/src/mixpeek/models/logodetectsettings.py → mixpeek-0.21.1/src/mixpeek/models/retrievercacheconfig.py +20 -11
  114. mixpeek-0.21.1/src/mixpeek/models/retrievermodel.py +95 -0
  115. mixpeek-0.21.1/src/mixpeek/models/retrieverqueryrequest.py +114 -0
  116. mixpeek-0.21.1/src/mixpeek/models/retrieverresponse.py +24 -0
  117. mixpeek-0.21.1/src/mixpeek/models/searchinteraction.py +81 -0
  118. mixpeek-0.21.1/src/mixpeek/models/singlelineageentry.py +99 -0
  119. mixpeek-0.21.1/src/mixpeek/models/sortdirection.py +11 -0
  120. mixpeek-0.21.1/src/mixpeek/models/sortoption.py +36 -0
  121. mixpeek-0.21.1/src/mixpeek/models/sourceconfig_input.py +72 -0
  122. mixpeek-0.21.1/src/mixpeek/models/sourceconfig_output.py +75 -0
  123. mixpeek-0.21.1/src/mixpeek/models/sourcetype.py +11 -0
  124. mixpeek-0.21.1/src/mixpeek/models/stageconfig_input.py +111 -0
  125. mixpeek-0.21.1/src/mixpeek/models/stageconfig_output.py +114 -0
  126. mixpeek-0.21.1/src/mixpeek/models/stagedefinition.py +110 -0
  127. mixpeek-0.20.20/src/mixpeek/models/createcollectionrequest.py → mixpeek-0.21.1/src/mixpeek/models/stageresponse.py +21 -15
  128. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/taskresponse.py +1 -1
  129. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/taskstatus.py +1 -0
  130. mixpeek-0.21.1/src/mixpeek/models/taxonomyapplicationconfig.py +63 -0
  131. mixpeek-0.21.1/src/mixpeek/models/taxonomyconfig.py +19 -0
  132. mixpeek-0.21.1/src/mixpeek/models/timeseriesdatapoint.py +25 -0
  133. mixpeek-0.21.1/src/mixpeek/models/timeseriesusage.py +36 -0
  134. mixpeek-0.20.20/src/mixpeek/models/full_asset_update_v1_assets_asset_id_putop.py → mixpeek-0.21.1/src/mixpeek/models/update_bucket_v1_buckets_bucket_identifier_putop.py +9 -9
  135. mixpeek-0.20.20/src/mixpeek/models/update_taxonomy_v1_entities_taxonomies_taxonomy_patchop.py → mixpeek-0.21.1/src/mixpeek/models/update_document_v1_collections_collection_identifier_documents_document_id_putop.py +25 -13
  136. mixpeek-0.20.20/src/mixpeek/models/full_feature_update_v1_features_feature_id_putop.py → mixpeek-0.21.1/src/mixpeek/models/update_object_v1_buckets_bucket_identifier_objects_object_identifier_putop.py +20 -9
  137. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/updatenamespacerequest.py +1 -1
  138. mixpeek-0.21.1/src/mixpeek/models/updateobjectrequest.py +75 -0
  139. mixpeek-0.21.1/src/mixpeek/models/usageresponse.py +86 -0
  140. mixpeek-0.21.1/src/mixpeek/models/usagesummary.py +39 -0
  141. mixpeek-0.21.1/src/mixpeek/models/usagetimerange.py +16 -0
  142. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/usermodel_input.py +3 -0
  143. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/usermodel_output.py +3 -0
  144. mixpeek-0.20.20/src/mixpeek/models/assetfeatures.py → mixpeek-0.21.1/src/mixpeek/models/vectorbasedconfig.py +20 -15
  145. mixpeek-0.20.20/src/mixpeek/models/jsontextoutputsettings.py → mixpeek-0.21.1/src/mixpeek/models/vectorindex.py +21 -13
  146. mixpeek-0.21.1/src/mixpeek/models/vectorindexdefinition.py +43 -0
  147. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/vectortype.py +4 -1
  148. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/namespaces.py +26 -480
  149. mixpeek-0.21.1/src/mixpeek/organization_notifications.py +214 -0
  150. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/organizations.py +6 -210
  151. mixpeek-0.20.20/src/mixpeek/featureextractors.py → mixpeek-0.21.1/src/mixpeek/organizations_usage.py +31 -39
  152. mixpeek-0.21.1/src/mixpeek/research.py +228 -0
  153. mixpeek-0.21.1/src/mixpeek/retriever_interactions.py +1036 -0
  154. mixpeek-0.21.1/src/mixpeek/retriever_stages.py +232 -0
  155. mixpeek-0.20.20/src/mixpeek/ingestassets.py → mixpeek-0.21.1/src/mixpeek/retrievers.py +209 -271
  156. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/sdk.py +40 -23
  157. mixpeek-0.21.1/src/mixpeek/taxonomies.py +270 -0
  158. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/types/basemodel.py +3 -3
  159. mixpeek-0.21.1/src/mixpeek/utils/enums.py +74 -0
  160. mixpeek-0.20.20/src/mixpeek/assets.py +0 -1860
  161. mixpeek-0.20.20/src/mixpeek/models/__init__.py +0 -837
  162. mixpeek-0.20.20/src/mixpeek/models/actionusage.py +0 -16
  163. mixpeek-0.20.20/src/mixpeek/models/assetresponse.py +0 -166
  164. mixpeek-0.20.20/src/mixpeek/models/assets_model_searchquery.py +0 -21
  165. mixpeek-0.20.20/src/mixpeek/models/assetupdate.py +0 -28
  166. mixpeek-0.20.20/src/mixpeek/models/assignmentconfig.py +0 -67
  167. mixpeek-0.20.20/src/mixpeek/models/assignmentmode.py +0 -11
  168. mixpeek-0.20.20/src/mixpeek/models/availablemodels.py +0 -16
  169. mixpeek-0.20.20/src/mixpeek/models/availablemodelsresponse.py +0 -27
  170. mixpeek-0.20.20/src/mixpeek/models/classificationmatch.py +0 -77
  171. mixpeek-0.20.20/src/mixpeek/models/classificationwithfeature.py +0 -73
  172. mixpeek-0.20.20/src/mixpeek/models/collectiondetailsresponse.py +0 -83
  173. mixpeek-0.20.20/src/mixpeek/models/collectionmodel.py +0 -70
  174. mixpeek-0.20.20/src/mixpeek/models/dateusage.py +0 -22
  175. mixpeek-0.20.20/src/mixpeek/models/delete_taxonomy_v1_entities_taxonomies_taxonomy_deleteop.py +0 -59
  176. mixpeek-0.20.20/src/mixpeek/models/denseembedding.py +0 -16
  177. mixpeek-0.20.20/src/mixpeek/models/discoverrequest.py +0 -64
  178. mixpeek-0.20.20/src/mixpeek/models/embeddingconfig.py +0 -33
  179. mixpeek-0.20.20/src/mixpeek/models/embeddingrequest.py +0 -92
  180. mixpeek-0.20.20/src/mixpeek/models/embeddingresponse.py +0 -64
  181. mixpeek-0.20.20/src/mixpeek/models/entitysettings.py +0 -50
  182. mixpeek-0.20.20/src/mixpeek/models/featureextractionembeddingrequest.py +0 -54
  183. mixpeek-0.20.20/src/mixpeek/models/featureoptions.py +0 -25
  184. mixpeek-0.20.20/src/mixpeek/models/features_model_paginationresponse.py +0 -59
  185. mixpeek-0.20.20/src/mixpeek/models/featureupdaterequest.py +0 -21
  186. mixpeek-0.20.20/src/mixpeek/models/get_asset_v1_assets_asset_id_getop.py +0 -73
  187. mixpeek-0.20.20/src/mixpeek/models/get_asset_with_features_v1_assets_asset_id_features_getop.py +0 -73
  188. mixpeek-0.20.20/src/mixpeek/models/get_collection_details_v1_collections_collection_details_getop.py +0 -59
  189. mixpeek-0.20.20/src/mixpeek/models/get_collection_details_v1_collections_collection_getop.py +0 -59
  190. mixpeek-0.20.20/src/mixpeek/models/get_feature_v1_features_feature_id_getop.py +0 -70
  191. mixpeek-0.20.20/src/mixpeek/models/get_taxonomy_node_v1_entities_taxonomies_nodes_node_getop.py +0 -59
  192. mixpeek-0.20.20/src/mixpeek/models/groupedassetdata.py +0 -18
  193. mixpeek-0.20.20/src/mixpeek/models/imagedescribesettings.py +0 -82
  194. mixpeek-0.20.20/src/mixpeek/models/imagedetectsettings.py +0 -47
  195. mixpeek-0.20.20/src/mixpeek/models/imagereadsettings.py +0 -71
  196. mixpeek-0.20.20/src/mixpeek/models/imagesettings.py +0 -92
  197. mixpeek-0.20.20/src/mixpeek/models/jsonvideooutputsettings.py +0 -55
  198. mixpeek-0.20.20/src/mixpeek/models/listassetsrequest.py +0 -75
  199. mixpeek-0.20.20/src/mixpeek/models/listassetsresponse.py +0 -22
  200. mixpeek-0.20.20/src/mixpeek/models/listclassificationsrequest.py +0 -69
  201. mixpeek-0.20.20/src/mixpeek/models/listclassificationsresponse.py +0 -31
  202. mixpeek-0.20.20/src/mixpeek/models/listcollectionsresponse.py +0 -22
  203. mixpeek-0.20.20/src/mixpeek/models/listfeaturesrequest.py +0 -77
  204. mixpeek-0.20.20/src/mixpeek/models/listfeaturesresponse.py +0 -22
  205. mixpeek-0.20.20/src/mixpeek/models/listtaxonomiesresponse.py +0 -24
  206. mixpeek-0.20.20/src/mixpeek/models/modality.py +0 -13
  207. mixpeek-0.20.20/src/mixpeek/models/modeldetails.py +0 -61
  208. mixpeek-0.20.20/src/mixpeek/models/nodeoptions.py +0 -16
  209. mixpeek-0.20.20/src/mixpeek/models/patch_namespace_v1_namespaces_namespace_patchop.py +0 -28
  210. mixpeek-0.20.20/src/mixpeek/models/payloadindextype.py +0 -17
  211. mixpeek-0.20.20/src/mixpeek/models/processimageurlinput.py +0 -87
  212. mixpeek-0.20.20/src/mixpeek/models/processtextinput.py +0 -82
  213. mixpeek-0.20.20/src/mixpeek/models/processvideourlinput.py +0 -87
  214. mixpeek-0.20.20/src/mixpeek/models/querysettings.py +0 -56
  215. mixpeek-0.20.20/src/mixpeek/models/rerankingoptions.py +0 -47
  216. mixpeek-0.20.20/src/mixpeek/models/search_model_searchquery.py +0 -76
  217. mixpeek-0.20.20/src/mixpeek/models/searchassetsrequest.py +0 -78
  218. mixpeek-0.20.20/src/mixpeek/models/searchrequestfeatures.py +0 -153
  219. mixpeek-0.20.20/src/mixpeek/models/sortoption.py +0 -28
  220. mixpeek-0.20.20/src/mixpeek/models/sparseembedding.py +0 -21
  221. mixpeek-0.20.20/src/mixpeek/models/taxonomycreate.py +0 -20
  222. mixpeek-0.20.20/src/mixpeek/models/taxonomyextractionconfig.py +0 -26
  223. mixpeek-0.20.20/src/mixpeek/models/taxonomymodel.py +0 -27
  224. mixpeek-0.20.20/src/mixpeek/models/taxonomynode.py +0 -101
  225. mixpeek-0.20.20/src/mixpeek/models/taxonomynodecreate.py +0 -63
  226. mixpeek-0.20.20/src/mixpeek/models/textsettings.py +0 -67
  227. mixpeek-0.20.20/src/mixpeek/models/updateassetrequest.py +0 -60
  228. mixpeek-0.20.20/src/mixpeek/models/usage.py +0 -18
  229. mixpeek-0.20.20/src/mixpeek/models/vectormodel.py +0 -15
  230. mixpeek-0.20.20/src/mixpeek/models/videodescribesettings.py +0 -82
  231. mixpeek-0.20.20/src/mixpeek/models/videodetectsettings.py +0 -47
  232. mixpeek-0.20.20/src/mixpeek/models/videoreadsettings.py +0 -71
  233. mixpeek-0.20.20/src/mixpeek/models/videosettings.py +0 -115
  234. mixpeek-0.20.20/src/mixpeek/models/videotranscriptionsettings.py +0 -69
  235. mixpeek-0.20.20/src/mixpeek/taxonomyentities.py +0 -1818
  236. mixpeek-0.20.20/src/mixpeek/utils/enums.py +0 -34
  237. {mixpeek-0.20.20 → mixpeek-0.21.1}/py.typed +0 -0
  238. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/__init__.py +0 -0
  239. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/_hooks/__init__.py +0 -0
  240. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/_hooks/registration.py +0 -0
  241. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/_hooks/sdkhooks.py +0 -0
  242. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/_hooks/types.py +0 -0
  243. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/basesdk.py +0 -0
  244. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/health.py +0 -0
  245. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/httpclient.py +0 -0
  246. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/apierror.py +0 -0
  247. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/apikey.py +0 -0
  248. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/boolindexparams.py +0 -0
  249. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/create_api_key_v1_organizations_users_user_email_api_keys_postop.py +0 -0
  250. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/datetimeindexparams.py +0 -0
  251. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/delete_api_key_v1_organizations_users_user_email_api_keys_key_name_deleteop.py +0 -0
  252. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/delete_namespace_v1_namespaces_namespace_deleteop.py +0 -0
  253. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/delete_user_v1_organizations_users_user_email_deleteop.py +0 -0
  254. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/errorresponse.py +0 -0
  255. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/floatindexparams.py +0 -0
  256. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/genericsuccessresponse.py +0 -0
  257. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/geoindexparams.py +0 -0
  258. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/get_namespace_v1_namespaces_namespace_getop.py +0 -0
  259. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/get_user_v1_organizations_users_user_email_getop.py +0 -0
  260. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/healthcheckresponse.py +0 -0
  261. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/httpvalidationerror.py +0 -0
  262. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/integerindexparams.py +0 -0
  263. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/internal/__init__.py +0 -0
  264. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/internal/globals.py +0 -0
  265. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/keywordindexparams.py +0 -0
  266. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/organizationmodel.py +0 -0
  267. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/payloadschematype.py +0 -0
  268. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/permission.py +0 -0
  269. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/security.py +0 -0
  270. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/textindexparams.py +0 -0
  271. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/tokenizertype.py +0 -0
  272. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/update_api_key_v1_organizations_users_user_email_api_keys_key_name_patchop.py +0 -0
  273. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/update_namespace_v1_namespaces_namespace_putop.py +0 -0
  274. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/uuidindexparams.py +0 -0
  275. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/models/validationerror.py +0 -0
  276. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/py.typed +0 -0
  277. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/sdkconfiguration.py +0 -0
  278. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/tasks.py +0 -0
  279. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/types/__init__.py +0 -0
  280. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/users.py +0 -0
  281. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/__init__.py +0 -0
  282. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/annotations.py +0 -0
  283. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/eventstreaming.py +0 -0
  284. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/forms.py +0 -0
  285. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/headers.py +0 -0
  286. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/logger.py +0 -0
  287. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/metadata.py +0 -0
  288. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/queryparams.py +0 -0
  289. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/requestbodies.py +0 -0
  290. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/retries.py +0 -0
  291. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/security.py +0 -0
  292. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/serializers.py +0 -0
  293. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/url.py +0 -0
  294. {mixpeek-0.20.20 → mixpeek-0.21.1}/src/mixpeek/utils/values.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: mixpeek
3
- Version: 0.20.20
3
+ Version: 0.21.1
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3.12
12
12
  Classifier: Programming Language :: Python :: 3.13
13
13
  Requires-Dist: eval-type-backport (>=0.2.0)
14
14
  Requires-Dist: httpx (>=0.28.1)
15
- Requires-Dist: pydantic (>=2.10.3)
15
+ Requires-Dist: pydantic (>=2.11.2)
16
16
  Requires-Dist: python-dateutil (>=2.8.2)
17
17
  Requires-Dist: typing-inspection (>=0.4.0)
18
18
  Project-URL: Repository, https://github.com/mixpeek/python-sdk.git
@@ -26,10 +26,6 @@ Developer-friendly & type-safe Python SDK specifically catered to leverage *mixp
26
26
  ## Summary
27
27
 
28
28
  Mixpeek API: This is the Mixpeek API, providing access to various endpoints for data processing and retrieval.
29
-
30
- Download OpenAPI Specification:
31
- - [OpenAPI JSON](https://github.com/mixpeek/python-sdk/blob/master//openapi.json)
32
- - [OpenAPI YAML](https://github.com/mixpeek/python-sdk/blob/master//openapi.yaml)
33
29
  <!-- End Summary [summary] -->
34
30
 
35
31
  <!-- Start Table of Contents [toc] -->
@@ -201,66 +197,100 @@ with Mixpeek(
201
197
  <details open>
202
198
  <summary>Available methods</summary>
203
199
 
204
- ### [assets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md)
200
+ ### [bucket_objects](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md)
205
201
 
206
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#get) - Get Asset
207
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#delete) - Delete Asset
208
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#update) - Full Asset Update
209
- * [partial_update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#partial_update) - Partial Asset Update
210
- * [get_with_features](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#get_with_features) - Get Asset With Features
211
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#list) - List Assets
212
- * [search](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#search) - Search Assets
202
+ * [create_object_v1_buckets_bucket_identifier_objects_create_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#create_object_v1_buckets_bucket_identifier_objects_create_post) - Create Object
203
+ * [get_object_v1_buckets_bucket_identifier_objects_object_identifier_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#get_object_v1_buckets_bucket_identifier_objects_object_identifier_get) - Get Object
204
+ * [update_object_v1_buckets_bucket_identifier_objects_object_identifier_put](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#update_object_v1_buckets_bucket_identifier_objects_object_identifier_put) - Update Object
205
+ * [delete_object_v1_buckets_bucket_identifier_objects_object_identifier_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#delete_object_v1_buckets_bucket_identifier_objects_object_identifier_delete) - Delete Object
206
+ * [list_objects_v1_buckets_bucket_identifier_objects_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#list_objects_v1_buckets_bucket_identifier_objects_post) - List Objects
213
207
 
214
- ### [collections](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md)
208
+ ### [buckets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md)
209
+
210
+ * [create_bucket_v1_buckets_create_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#create_bucket_v1_buckets_create_post) - Create Bucket
211
+ * [get_bucket_v1_buckets_bucket_identifier_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#get_bucket_v1_buckets_bucket_identifier_get) - Get Bucket
212
+ * [update_bucket_v1_buckets_bucket_identifier_put](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#update_bucket_v1_buckets_bucket_identifier_put) - Update Bucket
213
+ * [delete_bucket_v1_buckets_bucket_identifier_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#delete_bucket_v1_buckets_bucket_identifier_delete) - Delete Bucket
214
+ * [list_buckets_v1_buckets_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#list_buckets_v1_buckets_post) - List Buckets
215
+
216
+ ### [clusters](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/clusters/README.md)
217
+
218
+ * [create_cluster_v1_clusters_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/clusters/README.md#create_cluster_v1_clusters_post) - Create Cluster
219
+
220
+ ### [collection_cache](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md)
221
+
222
+ * [invalidate_cache_v1_collections_cache_invalidate_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md#invalidate_cache_v1_collections_cache_invalidate_post) - Invalidate Cache
223
+ * [get_cache_stats_v1_collections_cache_stats_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md#get_cache_stats_v1_collections_cache_stats_get) - Get Cache Stats
224
+ * [cleanup_cache_v1_collections_cache_cleanup_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md#cleanup_cache_v1_collections_cache_cleanup_post) - Cleanup Cache
215
225
 
216
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#list) - List Collections
217
- * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#create) - Create Collection
218
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#delete) - Delete Collection
219
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#update) - Update Collection
220
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#get) - Get Collection Details
221
- * [get_collection_details_v1_collections_collection_details_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#get_collection_details_v1_collections_collection_details_get) - Get Collection Details
226
+ ### [collection_documents](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md)
222
227
 
223
- ### [feature_extractors](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featureextractors/README.md)
228
+ * [get_document_v1_collections_collection_identifier_documents_document_id_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#get_document_v1_collections_collection_identifier_documents_document_id_get) - Get Document
229
+ * [update_document_v1_collections_collection_identifier_documents_document_id_put](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#update_document_v1_collections_collection_identifier_documents_document_id_put) - Update Document
230
+ * [delete_document_v1_collections_collection_identifier_documents_document_id_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#delete_document_v1_collections_collection_identifier_documents_document_id_delete) - Delete Document
231
+ * [list_documents_v1_collections_collection_identifier_documents_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#list_documents_v1_collections_collection_identifier_documents_get) - List Documents
232
+ * [batch_update_documents_v1_collections_collection_identifier_documents_batch_put](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#batch_update_documents_v1_collections_collection_identifier_documents_batch_put) - Batch Update Documents
233
+ * [batch_delete_documents_v1_collections_collection_identifier_documents_batch_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#batch_delete_documents_v1_collections_collection_identifier_documents_batch_delete) - Batch Delete Documents
224
234
 
225
- * [extract_embeddings](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featureextractors/README.md#extract_embeddings) - Extract Embeddings
235
+ ### [collections](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md)
236
+
237
+ * [create_collection_v1_collections_create_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#create_collection_v1_collections_create_post) - Create Collection
238
+ * [get_collection_v1_collections_collection_id_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#get_collection_v1_collections_collection_id_get) - Get Collection
226
239
 
227
240
  ### [features](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md)
228
241
 
229
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#get) - Get Feature
230
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#delete) - Delete Feature
231
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#update) - Full Feature Update
232
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#list) - List Features
233
- * [search](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#search) - Search Features
242
+ * [list_feature_extractors_v1_features_extractors_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#list_feature_extractors_v1_features_extractors_get) - List Feature Extractors
243
+ * [get_feature_extractor_v1_features_extractors_feature_id_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#get_feature_extractor_v1_features_extractors_feature_id_get) - Get Feature Extractor Details
234
244
 
235
245
  ### [health](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/health/README.md)
236
246
 
237
247
  * [check](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/health/README.md#check) - Healthcheck
238
248
 
239
- ### [ingest_assets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md)
240
-
241
- * [ingest_text](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md#ingest_text) - Ingest Text
242
- * [ingest_video_url](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md#ingest_video_url) - Ingest Video Url
243
- * [ingest_image_url](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md#ingest_image_url) - Ingest Image Url
244
-
245
249
 
246
250
  ### [namespaces](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md)
247
251
 
248
252
  * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#create) - Create Namespace
249
253
  * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list) - List Namespaces
250
254
  * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#delete) - Delete Namespace
251
- * [patch_namespace_v1_namespaces_namespace_patch](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#patch_namespace_v1_namespaces_namespace_patch) - Partially Update Namespace
252
255
  * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#update) - Update Namespace
253
256
  * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#get) - Get Namespace
254
- * [list_models](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list_models) - List Available Models
257
+
258
+ ### [organization_notifications](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizationnotifications/README.md)
259
+
260
+ * [send_notification_v1_organizations_notifications_send_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizationnotifications/README.md#send_notification_v1_organizations_notifications_send_post) - Send Notification
255
261
 
256
262
  ### [organizations](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md)
257
263
 
258
264
  * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get) - Get Organization
259
- * [get_usage](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_usage) - Get Usage
260
265
  * [add_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#add_user) - Add User
261
266
  * [delete_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_api_key) - Delete Api Key
262
267
  * [update_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#update_api_key) - Update Api Key
263
268
 
269
+ ### [organizations_usage](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizationsusage/README.md)
270
+
271
+ * [get_usage_v1_organizations_usage_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizationsusage/README.md#get_usage_v1_organizations_usage_post) - Get Usage
272
+
273
+ ### [research](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/research/README.md)
274
+
275
+ * [get_research_v1_research_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/research/README.md#get_research_v1_research_get) - Get Research
276
+
277
+ ### [retriever_interactions](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md)
278
+
279
+ * [create_interaction_v1_retrievers_interactions_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md#create_interaction_v1_retrievers_interactions_post) - Create Interaction
280
+ * [list_interactions_v1_retrievers_interactions_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md#list_interactions_v1_retrievers_interactions_get) - List Interactions
281
+ * [get_interaction_v1_retrievers_interactions_interaction_id_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md#get_interaction_v1_retrievers_interactions_interaction_id_get) - Get Interaction
282
+ * [delete_interaction_v1_retrievers_interactions_interaction_id_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md#delete_interaction_v1_retrievers_interactions_interaction_id_delete) - Delete Interaction
283
+
284
+ ### [retriever_stages](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverstages/README.md)
285
+
286
+ * [get_retriever_stages_v1_retrievers_stages_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverstages/README.md#get_retriever_stages_v1_retrievers_stages_get) - List Retriever Stages
287
+
288
+ ### [retrievers](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrievers/README.md)
289
+
290
+ * [create_retriever_v1_retrievers_retrievers_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrievers/README.md#create_retriever_v1_retrievers_retrievers_post) - Create Retriever
291
+ * [get_retriever_v1_retrievers_retrievers_retriever_id_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrievers/README.md#get_retriever_v1_retrievers_retrievers_retriever_id_get) - Get Retriever
292
+ * [execute_retriever_v1_retrievers_retrievers_retriever_id_execute_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrievers/README.md#execute_retriever_v1_retrievers_retrievers_retriever_id_execute_post) - Execute Retriever
293
+
264
294
  ### [tasks](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md)
265
295
 
266
296
  * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#delete) - Kill Task
@@ -269,19 +299,7 @@ with Mixpeek(
269
299
 
270
300
  ### [taxonomies](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomies/README.md)
271
301
 
272
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomies/README.md#get) - Get Taxonomy
273
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomies/README.md#delete) - Delete Taxonomy
274
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomies/README.md#update) - Update Taxonomy
275
-
276
- ### [taxonomy_entities](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md)
277
-
278
- * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#create) - Create Taxonomy
279
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#list) - List Taxonomies
280
- * [get_node](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#get_node) - Get Taxonomy Node
281
- * [update_node](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#update_node) - Update Node
282
- * [classify_features](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#classify_features) - Classify Features against Taxonomy
283
- * [list_classifications](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#list_classifications) - List Taxonomy Classifications
284
- * [delete_classification](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#delete_classification) - Delete Classifications
302
+ * [create_taxonomy_v1_taxonomies_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomies/README.md#create_taxonomy_v1_taxonomies_post) - Create Taxonomy
285
303
 
286
304
  ### [users](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/users/README.md)
287
305
 
@@ -6,10 +6,6 @@ Developer-friendly & type-safe Python SDK specifically catered to leverage *mixp
6
6
  ## Summary
7
7
 
8
8
  Mixpeek API: This is the Mixpeek API, providing access to various endpoints for data processing and retrieval.
9
-
10
- Download OpenAPI Specification:
11
- - [OpenAPI JSON](https://github.com/mixpeek/python-sdk/blob/master//openapi.json)
12
- - [OpenAPI YAML](https://github.com/mixpeek/python-sdk/blob/master//openapi.yaml)
13
9
  <!-- End Summary [summary] -->
14
10
 
15
11
  <!-- Start Table of Contents [toc] -->
@@ -181,66 +177,100 @@ with Mixpeek(
181
177
  <details open>
182
178
  <summary>Available methods</summary>
183
179
 
184
- ### [assets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md)
180
+ ### [bucket_objects](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md)
185
181
 
186
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#get) - Get Asset
187
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#delete) - Delete Asset
188
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#update) - Full Asset Update
189
- * [partial_update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#partial_update) - Partial Asset Update
190
- * [get_with_features](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#get_with_features) - Get Asset With Features
191
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#list) - List Assets
192
- * [search](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#search) - Search Assets
182
+ * [create_object_v1_buckets_bucket_identifier_objects_create_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#create_object_v1_buckets_bucket_identifier_objects_create_post) - Create Object
183
+ * [get_object_v1_buckets_bucket_identifier_objects_object_identifier_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#get_object_v1_buckets_bucket_identifier_objects_object_identifier_get) - Get Object
184
+ * [update_object_v1_buckets_bucket_identifier_objects_object_identifier_put](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#update_object_v1_buckets_bucket_identifier_objects_object_identifier_put) - Update Object
185
+ * [delete_object_v1_buckets_bucket_identifier_objects_object_identifier_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#delete_object_v1_buckets_bucket_identifier_objects_object_identifier_delete) - Delete Object
186
+ * [list_objects_v1_buckets_bucket_identifier_objects_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#list_objects_v1_buckets_bucket_identifier_objects_post) - List Objects
193
187
 
194
- ### [collections](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md)
188
+ ### [buckets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md)
189
+
190
+ * [create_bucket_v1_buckets_create_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#create_bucket_v1_buckets_create_post) - Create Bucket
191
+ * [get_bucket_v1_buckets_bucket_identifier_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#get_bucket_v1_buckets_bucket_identifier_get) - Get Bucket
192
+ * [update_bucket_v1_buckets_bucket_identifier_put](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#update_bucket_v1_buckets_bucket_identifier_put) - Update Bucket
193
+ * [delete_bucket_v1_buckets_bucket_identifier_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#delete_bucket_v1_buckets_bucket_identifier_delete) - Delete Bucket
194
+ * [list_buckets_v1_buckets_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#list_buckets_v1_buckets_post) - List Buckets
195
+
196
+ ### [clusters](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/clusters/README.md)
197
+
198
+ * [create_cluster_v1_clusters_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/clusters/README.md#create_cluster_v1_clusters_post) - Create Cluster
199
+
200
+ ### [collection_cache](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md)
201
+
202
+ * [invalidate_cache_v1_collections_cache_invalidate_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md#invalidate_cache_v1_collections_cache_invalidate_post) - Invalidate Cache
203
+ * [get_cache_stats_v1_collections_cache_stats_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md#get_cache_stats_v1_collections_cache_stats_get) - Get Cache Stats
204
+ * [cleanup_cache_v1_collections_cache_cleanup_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md#cleanup_cache_v1_collections_cache_cleanup_post) - Cleanup Cache
195
205
 
196
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#list) - List Collections
197
- * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#create) - Create Collection
198
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#delete) - Delete Collection
199
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#update) - Update Collection
200
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#get) - Get Collection Details
201
- * [get_collection_details_v1_collections_collection_details_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#get_collection_details_v1_collections_collection_details_get) - Get Collection Details
206
+ ### [collection_documents](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md)
202
207
 
203
- ### [feature_extractors](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featureextractors/README.md)
208
+ * [get_document_v1_collections_collection_identifier_documents_document_id_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#get_document_v1_collections_collection_identifier_documents_document_id_get) - Get Document
209
+ * [update_document_v1_collections_collection_identifier_documents_document_id_put](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#update_document_v1_collections_collection_identifier_documents_document_id_put) - Update Document
210
+ * [delete_document_v1_collections_collection_identifier_documents_document_id_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#delete_document_v1_collections_collection_identifier_documents_document_id_delete) - Delete Document
211
+ * [list_documents_v1_collections_collection_identifier_documents_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#list_documents_v1_collections_collection_identifier_documents_get) - List Documents
212
+ * [batch_update_documents_v1_collections_collection_identifier_documents_batch_put](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#batch_update_documents_v1_collections_collection_identifier_documents_batch_put) - Batch Update Documents
213
+ * [batch_delete_documents_v1_collections_collection_identifier_documents_batch_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#batch_delete_documents_v1_collections_collection_identifier_documents_batch_delete) - Batch Delete Documents
204
214
 
205
- * [extract_embeddings](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featureextractors/README.md#extract_embeddings) - Extract Embeddings
215
+ ### [collections](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md)
216
+
217
+ * [create_collection_v1_collections_create_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#create_collection_v1_collections_create_post) - Create Collection
218
+ * [get_collection_v1_collections_collection_id_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#get_collection_v1_collections_collection_id_get) - Get Collection
206
219
 
207
220
  ### [features](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md)
208
221
 
209
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#get) - Get Feature
210
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#delete) - Delete Feature
211
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#update) - Full Feature Update
212
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#list) - List Features
213
- * [search](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#search) - Search Features
222
+ * [list_feature_extractors_v1_features_extractors_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#list_feature_extractors_v1_features_extractors_get) - List Feature Extractors
223
+ * [get_feature_extractor_v1_features_extractors_feature_id_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#get_feature_extractor_v1_features_extractors_feature_id_get) - Get Feature Extractor Details
214
224
 
215
225
  ### [health](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/health/README.md)
216
226
 
217
227
  * [check](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/health/README.md#check) - Healthcheck
218
228
 
219
- ### [ingest_assets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md)
220
-
221
- * [ingest_text](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md#ingest_text) - Ingest Text
222
- * [ingest_video_url](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md#ingest_video_url) - Ingest Video Url
223
- * [ingest_image_url](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingestassets/README.md#ingest_image_url) - Ingest Image Url
224
-
225
229
 
226
230
  ### [namespaces](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md)
227
231
 
228
232
  * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#create) - Create Namespace
229
233
  * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list) - List Namespaces
230
234
  * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#delete) - Delete Namespace
231
- * [patch_namespace_v1_namespaces_namespace_patch](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#patch_namespace_v1_namespaces_namespace_patch) - Partially Update Namespace
232
235
  * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#update) - Update Namespace
233
236
  * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#get) - Get Namespace
234
- * [list_models](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list_models) - List Available Models
237
+
238
+ ### [organization_notifications](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizationnotifications/README.md)
239
+
240
+ * [send_notification_v1_organizations_notifications_send_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizationnotifications/README.md#send_notification_v1_organizations_notifications_send_post) - Send Notification
235
241
 
236
242
  ### [organizations](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md)
237
243
 
238
244
  * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get) - Get Organization
239
- * [get_usage](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_usage) - Get Usage
240
245
  * [add_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#add_user) - Add User
241
246
  * [delete_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_api_key) - Delete Api Key
242
247
  * [update_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#update_api_key) - Update Api Key
243
248
 
249
+ ### [organizations_usage](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizationsusage/README.md)
250
+
251
+ * [get_usage_v1_organizations_usage_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizationsusage/README.md#get_usage_v1_organizations_usage_post) - Get Usage
252
+
253
+ ### [research](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/research/README.md)
254
+
255
+ * [get_research_v1_research_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/research/README.md#get_research_v1_research_get) - Get Research
256
+
257
+ ### [retriever_interactions](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md)
258
+
259
+ * [create_interaction_v1_retrievers_interactions_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md#create_interaction_v1_retrievers_interactions_post) - Create Interaction
260
+ * [list_interactions_v1_retrievers_interactions_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md#list_interactions_v1_retrievers_interactions_get) - List Interactions
261
+ * [get_interaction_v1_retrievers_interactions_interaction_id_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md#get_interaction_v1_retrievers_interactions_interaction_id_get) - Get Interaction
262
+ * [delete_interaction_v1_retrievers_interactions_interaction_id_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md#delete_interaction_v1_retrievers_interactions_interaction_id_delete) - Delete Interaction
263
+
264
+ ### [retriever_stages](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverstages/README.md)
265
+
266
+ * [get_retriever_stages_v1_retrievers_stages_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverstages/README.md#get_retriever_stages_v1_retrievers_stages_get) - List Retriever Stages
267
+
268
+ ### [retrievers](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrievers/README.md)
269
+
270
+ * [create_retriever_v1_retrievers_retrievers_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrievers/README.md#create_retriever_v1_retrievers_retrievers_post) - Create Retriever
271
+ * [get_retriever_v1_retrievers_retrievers_retriever_id_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrievers/README.md#get_retriever_v1_retrievers_retrievers_retriever_id_get) - Get Retriever
272
+ * [execute_retriever_v1_retrievers_retrievers_retriever_id_execute_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrievers/README.md#execute_retriever_v1_retrievers_retrievers_retriever_id_execute_post) - Execute Retriever
273
+
244
274
  ### [tasks](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md)
245
275
 
246
276
  * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#delete) - Kill Task
@@ -249,19 +279,7 @@ with Mixpeek(
249
279
 
250
280
  ### [taxonomies](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomies/README.md)
251
281
 
252
- * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomies/README.md#get) - Get Taxonomy
253
- * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomies/README.md#delete) - Delete Taxonomy
254
- * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomies/README.md#update) - Update Taxonomy
255
-
256
- ### [taxonomy_entities](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md)
257
-
258
- * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#create) - Create Taxonomy
259
- * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#list) - List Taxonomies
260
- * [get_node](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#get_node) - Get Taxonomy Node
261
- * [update_node](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#update_node) - Update Node
262
- * [classify_features](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#classify_features) - Classify Features against Taxonomy
263
- * [list_classifications](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#list_classifications) - List Taxonomy Classifications
264
- * [delete_classification](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomyentities/README.md#delete_classification) - Delete Classifications
282
+ * [create_taxonomy_v1_taxonomies_post](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomies/README.md#create_taxonomy_v1_taxonomies_post) - Create Taxonomy
265
283
 
266
284
  ### [users](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/users/README.md)
267
285
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mixpeek"
3
- version = "0.20.20"
3
+ version = "0.21.1"
4
4
  description = "Python Client SDK Generated by Speakeasy."
5
5
  authors = [{ name = "Speakeasy" },]
6
6
  readme = "README-PYPI.md"
@@ -8,7 +8,7 @@ requires-python = ">=3.9"
8
8
  dependencies = [
9
9
  "eval-type-backport >=0.2.0",
10
10
  "httpx >=0.28.1",
11
- "pydantic >=2.10.3",
11
+ "pydantic >=2.11.2",
12
12
  "python-dateutil >=2.8.2",
13
13
  "typing-inspection >=0.4.0",
14
14
  ]
@@ -27,7 +27,7 @@ include = ["py.typed", "src/mixpeek/py.typed"]
27
27
  in-project = true
28
28
 
29
29
  [tool.poetry.group.dev.dependencies]
30
- mypy = "==1.14.1"
30
+ mypy = "==1.15.0"
31
31
  pylint = "==3.2.3"
32
32
  types-python-dateutil = "^2.9.0.20240316"
33
33
 
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "mixpeek"
6
- __version__: str = "0.20.20"
6
+ __version__: str = "0.21.1"
7
7
  __openapi_doc_version__: str = "0.81"
8
- __gen_version__: str = "2.548.6"
9
- __user_agent__: str = "speakeasy-sdk/python 0.20.20 2.548.6 0.81 mixpeek"
8
+ __gen_version__: str = "2.585.2"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.21.1 2.585.2 0.81 mixpeek"
10
10
 
11
11
  try:
12
12
  if __package__ is not None: