mixpeek 0.20.19__py3-none-any.whl → 0.21.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (228) hide show
  1. mixpeek/_version.py +3 -3
  2. mixpeek/{assets.py → bucket_objects.py} +309 -793
  3. mixpeek/buckets.py +1292 -0
  4. mixpeek/clusters.py +306 -0
  5. mixpeek/collection_cache.py +820 -0
  6. mixpeek/{taxonomyentities.py → collection_documents.py} +305 -559
  7. mixpeek/collections.py +122 -996
  8. mixpeek/features.py +45 -991
  9. mixpeek/models/__init__.py +625 -570
  10. mixpeek/models/aggregationtype.py +13 -0
  11. mixpeek/models/apikeyupdate.py +1 -1
  12. mixpeek/models/attributebasedconfig.py +21 -0
  13. mixpeek/models/automaticnaming.py +29 -0
  14. mixpeek/models/basicfeatureextractor.py +35 -0
  15. mixpeek/models/{classify_features_v1_entities_taxonomies_taxonomy_classify_postop.py → batch_delete_documents_v1_collections_collection_identifier_documents_batch_deleteop.py} +17 -15
  16. mixpeek/models/{update_collection_v1_collections_collection_putop.py → batch_update_documents_v1_collections_collection_identifier_documents_batch_putop.py} +29 -19
  17. mixpeek/models/blobdetails.py +72 -0
  18. mixpeek/models/blobmodel.py +107 -0
  19. mixpeek/models/bucketcreaterequest.py +75 -0
  20. mixpeek/models/bucketresponse.py +90 -0
  21. mixpeek/models/bucketschema_input.py +37 -0
  22. mixpeek/models/bucketschema_output.py +37 -0
  23. mixpeek/models/{featureresponse.py → bucketschemafield_input.py} +45 -18
  24. mixpeek/models/bucketschemafield_output.py +101 -0
  25. mixpeek/models/bucketschemafieldtype.py +29 -0
  26. mixpeek/models/bucketupdaterequest.py +68 -0
  27. mixpeek/models/cachestats.py +40 -0
  28. mixpeek/models/{list_collections_v1_collections_getop.py → cleanup_cache_v1_collections_cache_cleanup_postop.py} +23 -12
  29. mixpeek/models/{inputtype.py → clusteringmethod.py} +3 -5
  30. mixpeek/models/clustertype.py +9 -0
  31. mixpeek/models/collectioncacheconfig_input.py +92 -0
  32. mixpeek/models/collectioncacheconfig_output.py +92 -0
  33. mixpeek/models/collectionconfig.py +32 -0
  34. mixpeek/models/collectionmodel.py +79 -8
  35. mixpeek/models/{create_taxonomy_v1_entities_taxonomies_postop.py → create_bucket_v1_buckets_create_postop.py} +7 -7
  36. mixpeek/models/{search_assets_v1_assets_search_postop.py → create_cluster_v1_clusters_postop.py} +7 -7
  37. mixpeek/models/{create_collection_v1_collections_postop.py → create_collection_v1_collections_create_postop.py} +3 -3
  38. mixpeek/models/{ingest_video_url_v1_ingest_videos_url_postop.py → create_interaction_v1_retrievers_interactions_postop.py} +7 -7
  39. mixpeek/models/{partial_asset_update_v1_assets_asset_id_patchop.py → create_object_v1_buckets_bucket_identifier_objects_create_postop.py} +11 -9
  40. mixpeek/models/{ingest_text_v1_ingest_text_postop.py → create_retriever_v1_retrievers_retrievers_postop.py} +10 -7
  41. mixpeek/models/{ingest_image_url_v1_ingest_images_url_postop.py → create_taxonomy_v1_taxonomies_postop.py} +7 -7
  42. mixpeek/models/createblobrequest.py +80 -0
  43. mixpeek/models/createclusterrequest.py +74 -0
  44. mixpeek/models/createcollectionrequest.py +72 -3
  45. mixpeek/models/createnamespacerequest.py +14 -8
  46. mixpeek/models/createobjectrequest.py +75 -0
  47. mixpeek/models/createretrieverrequest.py +90 -0
  48. mixpeek/models/{taxonomyupdate.py → createtaxonomyrequest.py} +15 -13
  49. mixpeek/models/{delete_asset_v1_assets_asset_id_deleteop.py → delete_bucket_v1_buckets_bucket_identifier_deleteop.py} +5 -5
  50. mixpeek/models/{delete_classifications_v1_entities_taxonomies_taxonomy_classifications_classification_id_deleteop.py → delete_document_v1_collections_collection_identifier_documents_document_id_deleteop.py} +11 -11
  51. mixpeek/models/{get_taxonomy_v1_entities_taxonomies_taxonomy_getop.py → delete_interaction_v1_retrievers_interactions_interaction_id_deleteop.py} +7 -7
  52. mixpeek/models/delete_object_v1_buckets_bucket_identifier_objects_object_identifier_deleteop.py +70 -0
  53. mixpeek/models/{featureextractionembeddingrequest.py → documenthandlingconfig.py} +12 -15
  54. mixpeek/models/documentinputhandling.py +11 -0
  55. mixpeek/models/{jsontextoutputsettings.py → documentlistresponse.py} +15 -14
  56. mixpeek/models/documentoutputhandling.py +10 -0
  57. mixpeek/models/documentoutputtype.py +11 -0
  58. mixpeek/models/documentresponse.py +87 -0
  59. mixpeek/models/{nodeupdate.py → documentupdate.py} +22 -13
  60. mixpeek/models/enrichmentfield.py +25 -0
  61. mixpeek/models/errordetail.py +1 -1
  62. mixpeek/models/{update_node_v1_entities_taxonomies_nodes_node_patchop.py → execute_retriever_v1_retrievers_retrievers_retriever_id_execute_postop.py} +11 -11
  63. mixpeek/models/featureextractorconfig.py +116 -0
  64. mixpeek/models/featureextractordefinition.py +192 -0
  65. mixpeek/models/filtercondition.py +25 -25
  66. mixpeek/models/filteroperator.py +24 -0
  67. mixpeek/models/generativemodels.py +10 -0
  68. mixpeek/models/{delete_feature_v1_features_feature_id_deleteop.py → get_bucket_v1_buckets_bucket_identifier_getop.py} +5 -5
  69. mixpeek/models/{list_taxonomies_v1_entities_taxonomies_getop.py → get_cache_stats_v1_collections_cache_stats_getop.py} +16 -14
  70. mixpeek/models/get_collection_v1_collections_collection_id_getop.py +59 -0
  71. mixpeek/models/get_document_v1_collections_collection_identifier_documents_document_id_getop.py +70 -0
  72. mixpeek/models/get_feature_extractor_v1_features_extractors_feature_id_getop.py +16 -0
  73. mixpeek/models/get_interaction_v1_retrievers_interactions_interaction_id_getop.py +57 -0
  74. mixpeek/models/{delete_collection_v1_collections_collection_deleteop.py → get_object_v1_buckets_bucket_identifier_objects_object_identifier_getop.py} +16 -7
  75. mixpeek/models/get_research_v1_research_getop.py +52 -0
  76. mixpeek/models/get_retriever_stages_v1_retrievers_stages_getop.py +52 -0
  77. mixpeek/models/{delete_taxonomy_v1_entities_taxonomies_taxonomy_deleteop.py → get_retriever_v1_retrievers_retrievers_retriever_id_getop.py} +5 -7
  78. mixpeek/models/get_task_v1_tasks_task_id_getop.py +1 -1
  79. mixpeek/models/getusagerequestmodel.py +91 -0
  80. mixpeek/models/hdbscanparameters.py +26 -0
  81. mixpeek/models/interactionresponse.py +86 -0
  82. mixpeek/models/interactiontype.py +22 -0
  83. mixpeek/models/{search_features_v1_features_search_postop.py → invalidate_cache_v1_collections_cache_invalidate_postop.py} +60 -34
  84. mixpeek/models/invalidationevent.py +67 -0
  85. mixpeek/models/invalidationstrategy.py +12 -0
  86. mixpeek/models/kill_task_v1_tasks_task_id_deleteop.py +1 -1
  87. mixpeek/models/list_active_tasks_v1_tasks_getop.py +1 -1
  88. mixpeek/models/{list_assets_v1_assets_postop.py → list_buckets_v1_buckets_postop.py} +18 -18
  89. mixpeek/models/{list_features_v1_features_postop.py → list_documents_v1_collections_collection_identifier_documents_getop.py} +54 -19
  90. mixpeek/models/list_interactions_v1_retrievers_interactions_getop.py +96 -0
  91. mixpeek/models/{list_classifications_v1_entities_taxonomies_taxonomy_classifications_postop.py → list_objects_v1_buckets_bucket_identifier_objects_postop.py} +22 -29
  92. mixpeek/models/{groupbyoptionsasset.py → listbucketsrequest.py} +19 -28
  93. mixpeek/models/listbucketsresponse.py +23 -0
  94. mixpeek/models/{groupbyoptions.py → listobjectsrequest.py} +19 -28
  95. mixpeek/models/listobjectsresponse.py +25 -0
  96. mixpeek/models/listtasksresponse.py +3 -6
  97. mixpeek/models/{logicaloperator.py → logicaloperator_input.py} +42 -24
  98. mixpeek/models/logicaloperator_output.py +121 -0
  99. mixpeek/models/multivectorindex.py +25 -0
  100. mixpeek/models/namespaceresponse.py +1 -1
  101. mixpeek/models/namespaceusage.py +45 -0
  102. mixpeek/models/namingmethod.py +8 -0
  103. mixpeek/models/objectresponse.py +124 -0
  104. mixpeek/models/{db_model_paginationresponse.py → paginationresponse.py} +3 -3
  105. mixpeek/models/payloadindexconfig.py +1 -1
  106. mixpeek/models/plan.py +82 -0
  107. mixpeek/models/recomputestrategy.py +12 -0
  108. mixpeek/models/resourcetotals.py +39 -0
  109. mixpeek/models/{jsonvideooutputsettings.py → retrieverbinding.py} +19 -11
  110. mixpeek/models/{logodetectsettings.py → retrievercacheconfig.py} +20 -11
  111. mixpeek/models/retrievermodel.py +95 -0
  112. mixpeek/models/retrieverqueryrequest.py +114 -0
  113. mixpeek/models/retrieverresponse.py +24 -0
  114. mixpeek/models/searchinteraction.py +81 -0
  115. mixpeek/models/singlelineageentry.py +99 -0
  116. mixpeek/models/sortdirection.py +11 -0
  117. mixpeek/models/sortoption.py +20 -12
  118. mixpeek/models/sourceconfig_input.py +72 -0
  119. mixpeek/models/sourceconfig_output.py +75 -0
  120. mixpeek/models/sourcetype.py +11 -0
  121. mixpeek/models/stageconfig_input.py +111 -0
  122. mixpeek/models/stageconfig_output.py +114 -0
  123. mixpeek/models/stagedefinition.py +110 -0
  124. mixpeek/models/{jsonimageoutputsettings.py → stageresponse.py} +21 -11
  125. mixpeek/models/taskresponse.py +1 -1
  126. mixpeek/models/taskstatus.py +1 -0
  127. mixpeek/models/{assetfeatures.py → taxonomyapplicationconfig.py} +23 -15
  128. mixpeek/models/taxonomyconfig.py +19 -0
  129. mixpeek/models/timeseriesdatapoint.py +25 -0
  130. mixpeek/models/timeseriesusage.py +36 -0
  131. mixpeek/models/{full_asset_update_v1_assets_asset_id_putop.py → update_bucket_v1_buckets_bucket_identifier_putop.py} +9 -9
  132. mixpeek/models/{update_taxonomy_v1_entities_taxonomies_taxonomy_patchop.py → update_document_v1_collections_collection_identifier_documents_document_id_putop.py} +25 -13
  133. mixpeek/models/{full_feature_update_v1_features_feature_id_putop.py → update_object_v1_buckets_bucket_identifier_objects_object_identifier_putop.py} +20 -9
  134. mixpeek/models/updatenamespacerequest.py +1 -1
  135. mixpeek/models/updateobjectrequest.py +75 -0
  136. mixpeek/models/usageresponse.py +86 -0
  137. mixpeek/models/usagesummary.py +39 -0
  138. mixpeek/models/usagetimerange.py +16 -0
  139. mixpeek/models/usermodel_input.py +3 -0
  140. mixpeek/models/usermodel_output.py +3 -0
  141. mixpeek/models/vectorbasedconfig.py +60 -0
  142. mixpeek/models/{collectionresult.py → vectorindex.py} +20 -15
  143. mixpeek/models/vectorindexdefinition.py +43 -0
  144. mixpeek/models/vectortype.py +4 -1
  145. mixpeek/namespaces.py +26 -480
  146. mixpeek/organization_notifications.py +214 -0
  147. mixpeek/organizations.py +6 -210
  148. mixpeek/{featureextractors.py → organizations_usage.py} +31 -39
  149. mixpeek/research.py +228 -0
  150. mixpeek/retriever_interactions.py +1036 -0
  151. mixpeek/retriever_stages.py +232 -0
  152. mixpeek/{ingestassets.py → retrievers.py} +209 -271
  153. mixpeek/sdk.py +40 -23
  154. mixpeek/taxonomies.py +43 -513
  155. mixpeek/types/basemodel.py +3 -3
  156. mixpeek/utils/enums.py +67 -27
  157. {mixpeek-0.20.19.dist-info → mixpeek-0.21.1.dist-info}/METADATA +68 -50
  158. mixpeek-0.21.1.dist-info/RECORD +216 -0
  159. {mixpeek-0.20.19.dist-info → mixpeek-0.21.1.dist-info}/WHEEL +1 -1
  160. mixpeek/models/actionusage.py +0 -16
  161. mixpeek/models/assetresponse.py +0 -166
  162. mixpeek/models/assets_model_searchquery.py +0 -21
  163. mixpeek/models/assetupdate.py +0 -28
  164. mixpeek/models/assignmentconfig.py +0 -67
  165. mixpeek/models/assignmentmode.py +0 -11
  166. mixpeek/models/availablemodels.py +0 -16
  167. mixpeek/models/availablemodelsresponse.py +0 -27
  168. mixpeek/models/classificationmatch.py +0 -77
  169. mixpeek/models/classificationwithfeature.py +0 -73
  170. mixpeek/models/collectiondetailsresponse.py +0 -83
  171. mixpeek/models/dateusage.py +0 -22
  172. mixpeek/models/denseembedding.py +0 -16
  173. mixpeek/models/discoverrequest.py +0 -64
  174. mixpeek/models/embeddingconfig.py +0 -33
  175. mixpeek/models/embeddingrequest.py +0 -92
  176. mixpeek/models/embeddingresponse.py +0 -64
  177. mixpeek/models/entitysettings.py +0 -50
  178. mixpeek/models/featureoptions.py +0 -25
  179. mixpeek/models/features_model_paginationresponse.py +0 -59
  180. mixpeek/models/featureupdaterequest.py +0 -21
  181. mixpeek/models/get_asset_v1_assets_asset_id_getop.py +0 -73
  182. mixpeek/models/get_asset_with_features_v1_assets_asset_id_features_getop.py +0 -73
  183. mixpeek/models/get_collection_details_v1_collections_collection_details_getop.py +0 -59
  184. mixpeek/models/get_collection_details_v1_collections_collection_getop.py +0 -59
  185. mixpeek/models/get_feature_v1_features_feature_id_getop.py +0 -70
  186. mixpeek/models/get_taxonomy_node_v1_entities_taxonomies_nodes_node_getop.py +0 -59
  187. mixpeek/models/groupedassetdata.py +0 -18
  188. mixpeek/models/imagedescribesettings.py +0 -82
  189. mixpeek/models/imagedetectsettings.py +0 -47
  190. mixpeek/models/imagereadsettings.py +0 -71
  191. mixpeek/models/imagesettings.py +0 -92
  192. mixpeek/models/listassetsrequest.py +0 -75
  193. mixpeek/models/listassetsresponse.py +0 -22
  194. mixpeek/models/listclassificationsrequest.py +0 -69
  195. mixpeek/models/listclassificationsresponse.py +0 -31
  196. mixpeek/models/listcollectionsresponse.py +0 -22
  197. mixpeek/models/listfeaturesrequest.py +0 -77
  198. mixpeek/models/listfeaturesresponse.py +0 -22
  199. mixpeek/models/listtaxonomiesresponse.py +0 -24
  200. mixpeek/models/modality.py +0 -13
  201. mixpeek/models/modeldetails.py +0 -61
  202. mixpeek/models/nodeoptions.py +0 -16
  203. mixpeek/models/patch_namespace_v1_namespaces_namespace_patchop.py +0 -28
  204. mixpeek/models/payloadindextype.py +0 -17
  205. mixpeek/models/processimageurlinput.py +0 -87
  206. mixpeek/models/processtextinput.py +0 -82
  207. mixpeek/models/processvideourlinput.py +0 -87
  208. mixpeek/models/querysettings.py +0 -56
  209. mixpeek/models/rerankingoptions.py +0 -47
  210. mixpeek/models/search_model_searchquery.py +0 -76
  211. mixpeek/models/searchassetsrequest.py +0 -78
  212. mixpeek/models/searchrequestfeatures.py +0 -153
  213. mixpeek/models/sparseembedding.py +0 -21
  214. mixpeek/models/taxonomycreate.py +0 -20
  215. mixpeek/models/taxonomyextractionconfig.py +0 -26
  216. mixpeek/models/taxonomymodel.py +0 -27
  217. mixpeek/models/taxonomynode.py +0 -101
  218. mixpeek/models/taxonomynodecreate.py +0 -63
  219. mixpeek/models/textsettings.py +0 -67
  220. mixpeek/models/updateassetrequest.py +0 -60
  221. mixpeek/models/usage.py +0 -18
  222. mixpeek/models/vectormodel.py +0 -15
  223. mixpeek/models/videodescribesettings.py +0 -82
  224. mixpeek/models/videodetectsettings.py +0 -47
  225. mixpeek/models/videoreadsettings.py +0 -71
  226. mixpeek/models/videosettings.py +0 -115
  227. mixpeek/models/videotranscriptionsettings.py +0 -69
  228. mixpeek-0.20.19.dist-info/RECORD +0 -201
mixpeek/utils/enums.py CHANGED
@@ -1,34 +1,74 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  import enum
4
-
4
+ import sys
5
5
 
6
6
  class OpenEnumMeta(enum.EnumMeta):
7
- def __call__(
8
- cls, value, names=None, *, module=None, qualname=None, type=None, start=1
9
- ):
10
- # The `type` kwarg also happens to be a built-in that pylint flags as
11
- # redeclared. Safe to ignore this lint rule with this scope.
12
- # pylint: disable=redefined-builtin
7
+ # The __call__ method `boundary` kwarg was added in 3.11 and must be present
8
+ # for pyright. Refer also: https://github.com/pylint-dev/pylint/issues/9622
9
+ # pylint: disable=unexpected-keyword-arg
10
+ # The __call__ method `values` varg must be named for pyright.
11
+ # pylint: disable=keyword-arg-before-vararg
12
+
13
+ if sys.version_info >= (3, 11):
14
+ def __call__(
15
+ cls, value, names=None, *values, module=None, qualname=None, type=None, start=1, boundary=None
16
+ ):
17
+ # The `type` kwarg also happens to be a built-in that pylint flags as
18
+ # redeclared. Safe to ignore this lint rule with this scope.
19
+ # pylint: disable=redefined-builtin
20
+
21
+ if names is not None:
22
+ return super().__call__(
23
+ value,
24
+ names=names,
25
+ *values,
26
+ module=module,
27
+ qualname=qualname,
28
+ type=type,
29
+ start=start,
30
+ boundary=boundary,
31
+ )
32
+
33
+ try:
34
+ return super().__call__(
35
+ value,
36
+ names=names, # pyright: ignore[reportArgumentType]
37
+ *values,
38
+ module=module,
39
+ qualname=qualname,
40
+ type=type,
41
+ start=start,
42
+ boundary=boundary,
43
+ )
44
+ except ValueError:
45
+ return value
46
+ else:
47
+ def __call__(
48
+ cls, value, names=None, *, module=None, qualname=None, type=None, start=1
49
+ ):
50
+ # The `type` kwarg also happens to be a built-in that pylint flags as
51
+ # redeclared. Safe to ignore this lint rule with this scope.
52
+ # pylint: disable=redefined-builtin
13
53
 
14
- if names is not None:
15
- return super().__call__(
16
- value,
17
- names=names,
18
- module=module,
19
- qualname=qualname,
20
- type=type,
21
- start=start,
22
- )
54
+ if names is not None:
55
+ return super().__call__(
56
+ value,
57
+ names=names,
58
+ module=module,
59
+ qualname=qualname,
60
+ type=type,
61
+ start=start,
62
+ )
23
63
 
24
- try:
25
- return super().__call__(
26
- value,
27
- names=names, # pyright: ignore[reportArgumentType]
28
- module=module,
29
- qualname=qualname,
30
- type=type,
31
- start=start,
32
- )
33
- except ValueError:
34
- return value
64
+ try:
65
+ return super().__call__(
66
+ value,
67
+ names=names, # pyright: ignore[reportArgumentType]
68
+ module=module,
69
+ qualname=qualname,
70
+ type=type,
71
+ start=start,
72
+ )
73
+ except ValueError:
74
+ return value
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: mixpeek
3
- Version: 0.20.19
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
 
@@ -0,0 +1,216 @@
1
+ mixpeek/__init__.py,sha256=Tz5Y5FzbIUT1AmaYiTwJI56XTmuldo9AalaAm4h_FdE,423
2
+ mixpeek/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,118
3
+ mixpeek/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
+ mixpeek/_hooks/sdkhooks.py,sha256=T0xbVPw8mvvFszHZlrZdtFrJBovAqE-JQfw4dS9Xi7Y,2495
5
+ mixpeek/_hooks/types.py,sha256=YEJVwBkHXS0VhTpa_xr7IZdJM5DdEi7QKq_LDv-6A2o,2810
6
+ mixpeek/_version.py,sha256=uzKhQgho2GZ3qGv9zJAlAiMpO4HCNDNPdvMmY7PXsuk,456
7
+ mixpeek/basesdk.py,sha256=qpFsPjn-FwedQiTfOScgF2VCWHRSPkd4TFH6GSlV4ww,12168
8
+ mixpeek/bucket_objects.py,sha256=21G9KCustCJKHbu2eUJvGT_Uhn8_zXmp2fdloSdPVKA,60287
9
+ mixpeek/buckets.py,sha256=8zlQ1lQq-MG64gHeHb_nZf8xzlO7NHK0MYr3tdaf9bw,54603
10
+ mixpeek/clusters.py,sha256=mS5wkslwGqj1wPRH6DfF0cEN5GLcw5c8qyHZp3IBZzs,13020
11
+ mixpeek/collection_cache.py,sha256=R9LybwvNRQTIWW2_1LAtHYngypdzcH6aXrMm5rnVsEk,33580
12
+ mixpeek/collection_documents.py,sha256=muBAtI3f-6g25fzM-Z_nRipOdaDXpkvyFvEtmGut1uI,66383
13
+ mixpeek/collections.py,sha256=7DxKQCGgkGe5KvY8sq7o7mkJrUviLOusdIZ03cS7G7c,26039
14
+ mixpeek/features.py,sha256=Yhiv_vrXikpdwcEQ9O9QZW8zKlumPtGmkf-en3R4gVU,18437
15
+ mixpeek/health.py,sha256=7QjiR-IESq2mrYrx9x0sa1de3530cUDc7gUdWsc-Q6s,6976
16
+ mixpeek/httpclient.py,sha256=lC-YQ7q4yiJGKElxBeb3aZnr-4aYxjgEpZ6roeXYlyg,4318
17
+ mixpeek/models/__init__.py,sha256=zXu_Ia3b29bGNXNksO8O0asLE4RMwGYSNI2n_sZ6MCg,34880
18
+ mixpeek/models/aggregationtype.py,sha256=n2cLLTXTEaFxkwujhy2kYSFXjSsrHMajCB0NQF2Z4Vk,292
19
+ mixpeek/models/apierror.py,sha256=9mTyJSyvUAOnSfW_1HWt9dGl8IDlpQ68DebwYsDNdug,528
20
+ mixpeek/models/apikey.py,sha256=P99SWsu6wgc6HStE2MteANIGShUkM2dwQnbQvdg5AOc,654
21
+ mixpeek/models/apikeyupdate.py,sha256=GKzcfnzV1uY8m6utqnyheys3gcxRde0NHUfi4pncWUg,1549
22
+ mixpeek/models/attributebasedconfig.py,sha256=vL-qllYDw6xHy4s8AuHIHeC7_9AYy9L7haAZ6VLOJ20,760
23
+ mixpeek/models/automaticnaming.py,sha256=6R2dOCCQgWxxOE3YXS6zv8hsD1Oy7ewCGPgq3Enll_I,936
24
+ mixpeek/models/basicfeatureextractor.py,sha256=fFdd5rFtDSMMuIpSdRcDEgLKLMX7xoAdzo65_RT30hs,996
25
+ mixpeek/models/batch_delete_documents_v1_collections_collection_identifier_documents_batch_deleteop.py,sha256=JmYqM_CktjzVIrMmYGZUdiY9kDib2H2P8Ic5nD8yRxo,2663
26
+ mixpeek/models/batch_update_documents_v1_collections_collection_identifier_documents_batch_putop.py,sha256=HdFhXiF_eO87ZEsmRo9GHhLBFZJflaXpqra6jvcxvcU,2963
27
+ mixpeek/models/blobdetails.py,sha256=3k6A1BUmRBm9AqviDgLy0fZGdJsMI0fmtAsYSRyuYhI,2142
28
+ mixpeek/models/blobmodel.py,sha256=prGRZdN3fXMoatRCxC8yofIDrVjT9xoYxn4c1d4iAEE,3666
29
+ mixpeek/models/boolindexparams.py,sha256=bg7Hy6y9acpu7AxMpHTsYjEphDd0HnrqFPSgIDpgdZc,454
30
+ mixpeek/models/bucketcreaterequest.py,sha256=-kqbpfhFZr1qL9tGY6o-n1uEocnH8w5Sx9X_HmJlMP8,2408
31
+ mixpeek/models/bucketresponse.py,sha256=Ob90IgpYxbjK0A4H-8r9ekbkeG1eFw_39xrgQYCo3hw,2851
32
+ mixpeek/models/bucketschema_input.py,sha256=LgB5vuoo0sZJRC4IozHSgpbAr4tluj9EtKO2qCR6fwQ,1105
33
+ mixpeek/models/bucketschema_output.py,sha256=1uw_VETT_L_5SwyLouFXB6C3vt29tCnSR9_hwGL1PDM,1112
34
+ mixpeek/models/bucketschemafield_input.py,sha256=SoEAqO94UrQxZdZUQT78BVcd7_-hq7E8AIHEKmpokwU,3109
35
+ mixpeek/models/bucketschemafield_output.py,sha256=s0QmlCvPeFgKmq0y3kr9qnUs9gSfUlZvV742KfYh1II,3115
36
+ mixpeek/models/bucketschemafieldtype.py,sha256=vryElGbQOCTheTxW8iw7ZGaVcFgJ2oKXClvKLZ8_ZQM,707
37
+ mixpeek/models/bucketupdaterequest.py,sha256=Ubcu_bCYiN49deJU6gVCqv73AdKy-EP1-X3EyRKBQqw,2094
38
+ mixpeek/models/cachestats.py,sha256=1wd94FUtdSELYYZr296pjlSnMvdHa4eCbhqnvpAKO7k,1084
39
+ mixpeek/models/cleanup_cache_v1_collections_cache_cleanup_postop.py,sha256=ZSYt8son_r7DDw89QLZ_JeqHkNIKyLiri0zbVgK7BEw,2854
40
+ mixpeek/models/clusteringmethod.py,sha256=DZHTYlDBY7H1PObuVWgQOgO3eUDLXQFVrt_K1hDpbFk,213
41
+ mixpeek/models/clustertype.py,sha256=qeGwi1chYyaV4HsZuhBzh3Wj92ABP2VIfR2WQuoExDQ,212
42
+ mixpeek/models/collectioncacheconfig_input.py,sha256=qzqu7y-n-f6K6xvIZaKNBYMCOujFrM_ZKoDym4qaRgw,3334
43
+ mixpeek/models/collectioncacheconfig_output.py,sha256=1-IUFZRKnzJ6hJdQgie2kej-31j4VHoNW3MPSyqs8Q0,3336
44
+ mixpeek/models/collectionconfig.py,sha256=13X91c9BKA_iiXyQ73ILak1eYoIQuVFvCnXnBIGA1HQ,1105
45
+ mixpeek/models/collectionmodel.py,sha256=Mg8l4LWqmFN5ViOBOJeEfDLS4wdHV60XjBjSzbtWoQc,5196
46
+ mixpeek/models/create_api_key_v1_organizations_users_user_email_api_keys_postop.py,sha256=FpJUoFZ0nn3FEvgiVoF-fVdp1K8NJKGkkKX4rJ2cWjw,794
47
+ mixpeek/models/create_bucket_v1_buckets_create_postop.py,sha256=DdbCt94i7EA6utYKFAYrDdBR4vfdpC8AkndvsWxGYpM,2348
48
+ mixpeek/models/create_cluster_v1_clusters_postop.py,sha256=Zo99Nw9wqiOIGSMr5aZWpIr1zEWMnUf-X4s4fk-2YE0,2347
49
+ mixpeek/models/create_collection_v1_collections_create_postop.py,sha256=xMEzvNRIiVnIfdYr38e2wA_UDfi7tkSKJDfZ1VE9T90,2405
50
+ mixpeek/models/create_interaction_v1_retrievers_interactions_postop.py,sha256=M3tAVYBKJeAMIJo-ZX9PYa4iCbDhntM0fmVIrJUrarE,2360
51
+ mixpeek/models/create_object_v1_buckets_bucket_identifier_objects_create_postop.py,sha256=1IvrXTiWfabCzdY4haMyii-1ZEohPIBpg7FR7T7qcWA,2656
52
+ mixpeek/models/create_retriever_v1_retrievers_retrievers_postop.py,sha256=72qTF29FO2mqTiO9eAPSEAQJI2nT_Ft2cJY_mtpItaI,2402
53
+ mixpeek/models/create_taxonomy_v1_taxonomies_postop.py,sha256=MQQ58yb-1Ux9pJr_LVk2DMhZkvLHj7KZ8eaqGbA1E1A,2360
54
+ mixpeek/models/createblobrequest.py,sha256=bR407dYmFB24qVYvV2cES7ENG-J5VoWau9UW1zVGEVk,2663
55
+ mixpeek/models/createclusterrequest.py,sha256=MftnsxpSJciI22iqLpBZKqBrr8dv3eVcowLIvdHBBQU,2604
56
+ mixpeek/models/createcollectionrequest.py,sha256=3EnykYVY6ZVtRRYeRNT6fmxz_7_bMmVZngCtYUgWfN0,4654
57
+ mixpeek/models/createnamespacerequest.py,sha256=nL5wNhFNV8w01qEZ3rcIDLZAjWe9s6O5O2sOpNxmFkg,2461
58
+ mixpeek/models/createobjectrequest.py,sha256=fTRR54rt_wn53tWqE8W9GDKaH88RmS1izUVK6iANsNA,3178
59
+ mixpeek/models/createretrieverrequest.py,sha256=69FxEDyMsSv667PaAjc_y3bmvZ3yx3DLrMg1yaHzyJs,3001
60
+ mixpeek/models/createtaxonomyrequest.py,sha256=dhFxZuy2LKX2JoF23gpwcppw7ZzI2dFZ00tnlTGIt8M,1763
61
+ mixpeek/models/datetimeindexparams.py,sha256=i8SJBTEnWQEMOaOcN7Pt_Zptr6fxYJyO0Mx95-0EC68,468
62
+ mixpeek/models/delete_api_key_v1_organizations_users_user_email_api_keys_key_name_deleteop.py,sha256=EbE2ou5ERB-PKECL3sK3w20SmYEYJbCDNZZb2u9FHkE,714
63
+ mixpeek/models/delete_bucket_v1_buckets_bucket_identifier_deleteop.py,sha256=SGkEHqpQvTQHqstUI7rrhMeK9NJZk6RA6vHzeHtfVKY,2232
64
+ mixpeek/models/delete_document_v1_collections_collection_identifier_documents_document_id_deleteop.py,sha256=Vk561X-y5Ewjqg8cCyVXPv8RWCPK6eLLz-XfsU-6fBs,2608
65
+ mixpeek/models/delete_interaction_v1_retrievers_interactions_interaction_id_deleteop.py,sha256=RGvzYpXEVyO-dZI5Ms1J_7z7garEvVEtIiPkM_4jXzc,2266
66
+ mixpeek/models/delete_namespace_v1_namespaces_namespace_deleteop.py,sha256=8Rx0MWjeTpxIoeMalauVf-0e-gquwC441VregBqADJ4,642
67
+ mixpeek/models/delete_object_v1_buckets_bucket_identifier_objects_object_identifier_deleteop.py,sha256=uJg3wx9PDM-spnVxHoz1fzZWL5hSSIUj3Vnuo_3jxn4,2584
68
+ mixpeek/models/delete_user_v1_organizations_users_user_email_deleteop.py,sha256=ihsOW_KtfWvJTIwZW2zWKxFYnkbX7Qn7ux8XQxu8Z3U,544
69
+ mixpeek/models/documenthandlingconfig.py,sha256=8Uw_xpWesSedqIoGm1M0xC1sf3FPiIFnjWgQ-ZxdNYE,1783
70
+ mixpeek/models/documentinputhandling.py,sha256=gsbsWqWC77gj69fzmJN9c8ymPJhgVxlx-eOesZmIqhg,290
71
+ mixpeek/models/documentlistresponse.py,sha256=QnAF-9SulIAOKPMnl-NAlhfL_ax1rdihm50vNVMY9fE,1715
72
+ mixpeek/models/documentoutputhandling.py,sha256=KAFlvHPKCHsHjKjFGlAp7pDd1JpHzybnF-tscF3eW8Y,255
73
+ mixpeek/models/documentoutputtype.py,sha256=fhTpWfAmt1CTHNnEZPkbGg9Zjt7FI751Q5lP12F64Xg,260
74
+ mixpeek/models/documentresponse.py,sha256=XTpSOHZ1dNM5W3Rqini_kRYELGjWWsswlGyQDLZUY6A,2494
75
+ mixpeek/models/documentupdate.py,sha256=Ik8FyOT_K0tkeatILaHTixQlj9cbNfJIro2JvMxhm2g,1800
76
+ mixpeek/models/enrichmentfield.py,sha256=ZQMlhXUU-0kb55uxqapjXhsPWiL29XJi2LP5hMEy1JU,740
77
+ mixpeek/models/errordetail.py,sha256=UXID6lBBrcrJ2duQDlMURl3HBsE6uajAHzVl28y4Wyo,1516
78
+ mixpeek/models/errorresponse.py,sha256=YIbCFc44szh_OIUoQ3BByHWouYwa2Tqedm9NJcrNvyQ,582
79
+ mixpeek/models/execute_retriever_v1_retrievers_retrievers_retriever_id_execute_postop.py,sha256=JwQLgVQOqgH5mSSjSkA5J633OeRG43sdj2GNgz9QWfA,2606
80
+ mixpeek/models/featureextractorconfig.py,sha256=1f5FNTYfcKF7GGMlsJbGW8sT1kepnVvizX_mD-XNK7s,4263
81
+ mixpeek/models/featureextractordefinition.py,sha256=ZUuBANxq3OJlLuCAkGXL4Jah108USjBjuXcJwVmsd8U,6278
82
+ mixpeek/models/filtercondition.py,sha256=xY3-pqSzy7n9oAhIZTyr8b8CMYunshNpjhcPm5d4nKM,2212
83
+ mixpeek/models/filteroperator.py,sha256=ifDtbjNKBmpMsV35Trpt3aCYQgIEf7FoS16n7mQK_sY,525
84
+ mixpeek/models/floatindexparams.py,sha256=Ac0zuicEKeBwF59M4w0W6e6MODI2dRwDT1cntZt1D8E,453
85
+ mixpeek/models/generativemodels.py,sha256=UaNJ0Ysd5a2pjpwYKa_qnSMxNmS9LkGkwIyqsak0QAA,273
86
+ mixpeek/models/genericsuccessresponse.py,sha256=0Ce1Rab7ED1vQrVP6nAtjFYz-_o0nV0rPhaJHWKifA4,421
87
+ mixpeek/models/geoindexparams.py,sha256=wMb-04qAYhBZW1tCMzr8ZLRf5s43aWp_b4u_17bV5AE,443
88
+ mixpeek/models/get_bucket_v1_buckets_bucket_identifier_getop.py,sha256=l4CKLrV3PuY3BRL7KxtMliV3-Su84E6SgXeIqLr9z9Y,2220
89
+ mixpeek/models/get_cache_stats_v1_collections_cache_stats_getop.py,sha256=YzOG-2fiZWHhAfK7Ww3eXz6aJ8fxXlPDb1Dbkr4YcIU,2634
90
+ mixpeek/models/get_collection_v1_collections_collection_id_getop.py,sha256=x2WjW0cdUqssVSwI53EIkN1e16qtYMHhDuPUTW5VKdQ,2316
91
+ mixpeek/models/get_document_v1_collections_collection_identifier_documents_document_id_getop.py,sha256=90RPcVX_lM_jJlWVl_8SUJIxvYBzVi01U1jMiAHAtLE,2600
92
+ mixpeek/models/get_feature_extractor_v1_features_extractors_feature_id_getop.py,sha256=oeOUCTxfvb9nSC6a-gPsbhqqMHAqoj-7cRF2C2zZOPA,556
93
+ mixpeek/models/get_interaction_v1_retrievers_interactions_interaction_id_getop.py,sha256=AMxSgpfGwAq325HwdJryKeaMOIRA6XWQqtQ7_2HlEgo,2248
94
+ mixpeek/models/get_namespace_v1_namespaces_namespace_getop.py,sha256=21luHlRdFzWL2xm0klDBPSZFLjKBw7hudQN5YzhsSA0,630
95
+ mixpeek/models/get_object_v1_buckets_bucket_identifier_objects_object_identifier_getop.py,sha256=CEMeQ0zuCR6MnQS3si7HZJNc06lEmx8SThMSYQ5JX2Q,2566
96
+ mixpeek/models/get_research_v1_research_getop.py,sha256=g-MgBu0gki6BdQywatrRxWNvftGRXqzOwVn7xa_i2ec,2025
97
+ mixpeek/models/get_retriever_stages_v1_retrievers_stages_getop.py,sha256=jcPR8X1hPk0Ha8ynDzi3My1VJpK5O2Yqm61wTujne14,2055
98
+ mixpeek/models/get_retriever_v1_retrievers_retrievers_retriever_id_getop.py,sha256=iC8YBuRVmHhL49ToGx1RcghsdBgZpQrf9SgJHufIIXs,2232
99
+ mixpeek/models/get_task_v1_tasks_task_id_getop.py,sha256=47oIcaniTfbqYpOFll7h1N3DhGg67OX_qfJNChxL1i0,2172
100
+ mixpeek/models/get_user_v1_organizations_users_user_email_getop.py,sha256=CaY2ITxTdc8gDPPlR1co-JGPT30WO6ye-E9MGZ2gmzs,532
101
+ mixpeek/models/getusagerequestmodel.py,sha256=3NqFPw2zigaU__u1-QEn3rNvwRMHlvRGXKuh-mqIYok,3177
102
+ mixpeek/models/hdbscanparameters.py,sha256=x6LvqcNxQG0lG-cYpH7BIVg5gG6TKWFfdL9CGpF5GyM,844
103
+ mixpeek/models/healthcheckresponse.py,sha256=PK3C50wcUdZeLl6qfSYGBli2B3wPzCDTaLtSEtq4ZVY,305
104
+ mixpeek/models/httpvalidationerror.py,sha256=sjKOM2oJR4c4Z24vHmyhtEfqaQeUdKZUMEclKu23OLc,600
105
+ mixpeek/models/integerindexparams.py,sha256=r6nNOjihSSptcYwOdfrZTFRX_4bKWHbasGjEjdCLqM8,591
106
+ mixpeek/models/interactionresponse.py,sha256=7RLNs59OLD6ZGM_g4EqDqDSzLZd5aosD7U7iJrPAQcI,3080
107
+ mixpeek/models/interactiontype.py,sha256=9gOeXLJKqFBVT-y-rPE9RcUMiqgPT-ECupXSAkgTYEY,624
108
+ mixpeek/models/internal/__init__.py,sha256=6khoka0i1AXj5YsxEjzmIs1UYeD8DggU2Z69bLfmxvE,164
109
+ mixpeek/models/internal/globals.py,sha256=7PIqZPXMkyWKGGhRqEtmZiESK7Cbo-9dQjCjTi8yL1s,979
110
+ mixpeek/models/invalidate_cache_v1_collections_cache_invalidate_postop.py,sha256=PLgip9dTEX4trfgRI8NU_BdxYk2KoGEa1EYuO9BgAdk,4007
111
+ mixpeek/models/invalidationevent.py,sha256=ld8Bsagw_EtspuhtmDlNi50F4PbeHK2HdrfAlUcV-rA,2228
112
+ mixpeek/models/invalidationstrategy.py,sha256=eD4to-aEgBnn6DGaylFlCJ3rYJtMI989E0ILkSqwJ_k,335
113
+ mixpeek/models/keywordindexparams.py,sha256=V_p8KMQ_eftLvDSMTFuifeOEXZVAqKFml9Fx2woyE50,535
114
+ mixpeek/models/kill_task_v1_tasks_task_id_deleteop.py,sha256=LqFW5iK8_Dik6wL0op3jroOYZSpFE5RhYZymV2azGBQ,2180
115
+ mixpeek/models/list_active_tasks_v1_tasks_getop.py,sha256=pQL8QuDgA5FSCVQxh3e7a28sE7mJ5dWzxwIum-qtTkY,2455
116
+ mixpeek/models/list_buckets_v1_buckets_postop.py,sha256=WAzfTnfKzcuY07tK2NxM96xYwU2pTX1AIkBgX0eEr0M,2854
117
+ mixpeek/models/list_documents_v1_collections_collection_identifier_documents_getop.py,sha256=gIVJi4a5UplhTzBS_LsYW0iE1HNsIkt68QSZxiGu0DA,3875
118
+ mixpeek/models/list_interactions_v1_retrievers_interactions_getop.py,sha256=jWBwx15Fpa8XB1kV23s7RGQ9lybq2oW0vjK5Ihd_I4c,3332
119
+ mixpeek/models/list_objects_v1_buckets_bucket_identifier_objects_postop.py,sha256=gfZRPLAfSzXCIEyor-bWgWUG1WJnTOjNZM4MoeubVBk,3145
120
+ mixpeek/models/listbucketsrequest.py,sha256=Vi8Q8HGP_LImGBC0lIdLY4PL6pOt6GKtQB_infrApZU,2173
121
+ mixpeek/models/listbucketsresponse.py,sha256=igN3kP447WGCrQezE5htRNFT41C8Mlia1PquIQOgApg,696
122
+ mixpeek/models/listobjectsrequest.py,sha256=hIF1s67P0g_u6tPZPYe6ydHl_gtI5uZ68nEp8N38_b0,2189
123
+ mixpeek/models/listobjectsresponse.py,sha256=B0Ac5yCKtAxuF-a562e3g5C_wtflWU8ZtpIoPtI-SEc,812
124
+ mixpeek/models/listtasksresponse.py,sha256=1jYa0K70vEw7mw5dw73qpGmnzw9hr_kWq6y5R5Ej5DM,588
125
+ mixpeek/models/logicaloperator_input.py,sha256=jZcb0XBT1VfMjG5S7ZD4d9wP63eJJnqzku4zXan-JGI,3738
126
+ mixpeek/models/logicaloperator_output.py,sha256=UsGr2BiyZi2G-vYBvIFRZ7dzC89B6cKtU0gPc-wFDek,4199
127
+ mixpeek/models/multivectorindex.py,sha256=ZWHINlQg1j05ErmR1Qh4-hNnmDxvbZJKecu6PwlkttI,605
128
+ mixpeek/models/namespaceresponse.py,sha256=-5iDT8QhGkjwAcqO2VNw9cTaew6hsmoWwES-c54hffM,1512
129
+ mixpeek/models/namespaceusage.py,sha256=8xV-_ZC48BzNK-EvX_d5lkSeil1H50fpACR8hF6d5QY,1080
130
+ mixpeek/models/namingmethod.py,sha256=wenG2z-w7pRxmVoBmmW58pmMloaEn87rvnev-2uI8p4,189
131
+ mixpeek/models/objectresponse.py,sha256=-AhbE2LQRYWZge8nVSaqGlf0WTugitk89-qjuDNcNV8,4220
132
+ mixpeek/models/organizationmodel.py,sha256=nkTGqZdVoNiwy-OIWbgRZpkxOnwjvtG29r8Y3NaIDco,1204
133
+ mixpeek/models/paginationresponse.py,sha256=693ECQuG_e_5QKjYsVATuvau7lgGizgmeCdYGTRR-gQ,1522
134
+ mixpeek/models/payloadindexconfig.py,sha256=E_6YlVomrNzYXv9V3PXJLCZqVcIWHPRP9DzO0EL1f8k,2938
135
+ mixpeek/models/payloadschematype.py,sha256=DOhqg4XSdyx5ZT-1udYBcZ6PyhG48hiQ-gOtkrdbE40,332
136
+ mixpeek/models/permission.py,sha256=Jz-INYVs9RibQhR8fQmf_-FyPoszmycqyR8wUKo96zk,571
137
+ mixpeek/models/plan.py,sha256=EW5sbX8-u8VBUV5C2ug_5W-Q76cy5UafYyqEI-9E0pA,2507
138
+ mixpeek/models/recomputestrategy.py,sha256=48a5fT1yA99H8zVF9lzMw-0on8OqncHNFrrYaFMVS8I,297
139
+ mixpeek/models/resourcetotals.py,sha256=9sHja7Xu4qPlEO3hhElQSFwLsJ68tfejpufD6hqzLtE,951
140
+ mixpeek/models/retrieverbinding.py,sha256=BVoWigp1o44gl3FHTMxTeGrnB4jR4XzymSmi3nVyMtU,1881
141
+ mixpeek/models/retrievercacheconfig.py,sha256=lgrSzrBqAFPJk9oa6gHmzkMXdNDIYUVINZUxuFbD9yc,2076
142
+ mixpeek/models/retrievermodel.py,sha256=gNck8zG-KPrV58BO3L6jQ3LNdfCsyJQ0zkLzjuGBYT0,3132
143
+ mixpeek/models/retrieverqueryrequest.py,sha256=GU8NXTelxhJXceVaCiEYrT8gsOEDHR9PAq8z8OmtR-0,5146
144
+ mixpeek/models/retrieverresponse.py,sha256=fs2RCLvMLGQiuR1In8VUhnB882CvIXGS0f6TZFMaV2w,737
145
+ mixpeek/models/searchinteraction.py,sha256=XyS-GJv-zyuBO1t863f8tlqDE3zcRmLXMQpXttXrcJQ,2919
146
+ mixpeek/models/security.py,sha256=BmBA5yNcaMUKWsJGJtBdZvO1drfqEjAnN4nDs-IOKm4,678
147
+ mixpeek/models/singlelineageentry.py,sha256=Fy4Ka4v4iVuIVXIuEUoTYyHuVI5XLD3g44amc2WzlVM,3503
148
+ mixpeek/models/sortdirection.py,sha256=V4eX-M_IDP4nAtfe4lhNVFyh_WVFH9vH8593VZKm2GU,234
149
+ mixpeek/models/sortoption.py,sha256=8mW81Mjl2H6biMYzHdwDPT0Khi2eW5jE8-FEPc1-Czk,974
150
+ mixpeek/models/sourceconfig_input.py,sha256=d64q9eT-AZGepbc1so2lhDs3UHfNqN5qJpT10WizBVQ,2514
151
+ mixpeek/models/sourceconfig_output.py,sha256=DESkno9DuzVOOHGSrDZzmDSL3e5c6NTSV50yBaRn-wU,2534
152
+ mixpeek/models/sourcetype.py,sha256=Kv45pG_ynezOZtZJDN8GhUQpQRPULR3QV_JVbnD_NCg,266
153
+ mixpeek/models/stageconfig_input.py,sha256=jSwh-dPlEkL4jCcK8wLLaYu_S4RdrKfC6Z35YBjqu1k,3868
154
+ mixpeek/models/stageconfig_output.py,sha256=F7EkRKSWGzHssjoN7OVA2pD3HTLymrTkv7M5TyF9pG8,3894
155
+ mixpeek/models/stagedefinition.py,sha256=6TPw9i5SxRrwujH4H_c4P2pW75ZhT2_U_ZWiH7GG1l8,3449
156
+ mixpeek/models/stageresponse.py,sha256=YQSMRus13TM4mMdi2ziDY-WLlEUkoy3Kl6iRB-tJD7Q,1812
157
+ mixpeek/models/taskresponse.py,sha256=qJrOEDabagIpN5jmrcLFxSuCmX4ifrAraR1XQ0kb4-I,1676
158
+ mixpeek/models/taskstatus.py,sha256=2cuKHVsKF_JAjivUKDe4ynhi6shkSu7PBhoM0KNEwfo,453
159
+ mixpeek/models/taxonomyapplicationconfig.py,sha256=ECpjpDYNAkTExaip3EiHB5WWh9G_qrur1VJq-aAXlKk,2095
160
+ mixpeek/models/taxonomyconfig.py,sha256=a7-5-ovOeOaw15212UdSgWZRVRunYSCQDE3o4K3VoCg,572
161
+ mixpeek/models/textindexparams.py,sha256=_E7_Rfb9g-3w8im3DPcOJF7zWIR9g_Q57_ZtTW3Rs98,798
162
+ mixpeek/models/timeseriesdatapoint.py,sha256=27fhQ21c2O1jUB4ZGVqYGKoov5yX1jQLSrjLgnyJAJU,626
163
+ mixpeek/models/timeseriesusage.py,sha256=dSWzpMv0OP-5FEXe2a4ZEq_viMGjMXcbhJKDYbxdT0Y,1302
164
+ mixpeek/models/tokenizertype.py,sha256=anZ-d0-akzNjteTTGJmUUlhzZOglV_h3mz8rYVfUQzk,268
165
+ mixpeek/models/update_api_key_v1_organizations_users_user_email_api_keys_key_name_patchop.py,sha256=xYL3lQknHtqm-keJ9N6FlyeuMzGqe1ob7AgLJcnpZE0,972
166
+ mixpeek/models/update_bucket_v1_buckets_bucket_identifier_putop.py,sha256=niknmcSkYeL6r5IVBk-z2i_Eu0FxD9ceTwWDl_M2yCw,2556
167
+ mixpeek/models/update_document_v1_collections_collection_identifier_documents_document_id_putop.py,sha256=NRcLIyk4gW-acXtlIHYy61n_efFjwb7N4Nt3rnsECsQ,2971
168
+ mixpeek/models/update_namespace_v1_namespaces_namespace_putop.py,sha256=MMYlfHPG_iXU7Ev7OI-dKrBnUpusMQbnrHwSuAiDaqE,979
169
+ mixpeek/models/update_object_v1_buckets_bucket_identifier_objects_object_identifier_putop.py,sha256=9G2K9sT5uL-9cUhadbxbKHo2SEk9VZGuHp16DZtjR1c,2902
170
+ mixpeek/models/updatenamespacerequest.py,sha256=Cj7-ajmYY1uaRiVWH4FkcYXdhN2SKo4ilxAyRR9hzk4,2033
171
+ mixpeek/models/updateobjectrequest.py,sha256=IDZIMapATUAGDsj3qPeMDW2bD51maAkmODxppFeKRTM,2970
172
+ mixpeek/models/usageresponse.py,sha256=twdflTsRLJ5CNAzKhshuorBCzgi9ZF6tAjFk4BaXhrA,2893
173
+ mixpeek/models/usagesummary.py,sha256=EKopiYOGZIGs_9sEDP9UtW9UCyms4Bgb_vjs7pDS0z8,989
174
+ mixpeek/models/usagetimerange.py,sha256=a7pPCQ6i9H7HUroBEIVEG6S-kf-juH2xkJ1NPkxGpzQ,402
175
+ mixpeek/models/usermodel_input.py,sha256=acAVBMEkmDpbkdebQLNyUmMrTJiOH6orjdKBUTrB3w0,950
176
+ mixpeek/models/usermodel_output.py,sha256=fQ0BEEhZgOhxsZmjvPoUHTO_GYFsK8O5Q-hncRf2RaQ,956
177
+ mixpeek/models/uuidindexparams.py,sha256=2vR4nn9tJ5UeCKlpvUraBiLKIWSzgiErcrweV2Dsnpo,520
178
+ mixpeek/models/validationerror.py,sha256=g2zeZtOeoeEIsftPV67bjp5kqiIqBmM1hu7s3psh-Mc,524
179
+ mixpeek/models/vectorbasedconfig.py,sha256=6kqWNWsByArOTdO8g-Kctoknz66NKLts3bEKM-ovN4k,2083
180
+ mixpeek/models/vectorindex.py,sha256=58ceqzuKIxGQwDgNySOmPY19jSjnQ-Jvqq5TzKhfS14,1723
181
+ mixpeek/models/vectorindexdefinition.py,sha256=8cGTnvbloSpomuLQQZAu2Xb05wJTvzcptAyzOaWYHCE,1043
182
+ mixpeek/models/vectortype.py,sha256=Cr1SKExLzcxySc_c0WJr2yTAKVW6k5h6HpJ6rmldheg,260
183
+ mixpeek/namespaces.py,sha256=qZtawL3D6tQKfZiFqRBTyWJRGOdESmWYTqQQNzuAaUk,49112
184
+ mixpeek/organization_notifications.py,sha256=fLTPTrtlmCMl2MBc6B5cZjeIJUt_zq0VqBeCll5xo-g,8898
185
+ mixpeek/organizations.py,sha256=mShON0e1CPPtbGYI5MCQisDwOf0cvmJvgRe5n4WOZZE,39175
186
+ mixpeek/organizations_usage.py,sha256=2EWWK5kDeBL3ZkTWkQZqvXzVvgetACa5fNORCbWcHNw,9965
187
+ mixpeek/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
188
+ mixpeek/research.py,sha256=E3_kXPrfTpGiJV7Ou2BXQIGUFHcme-VBBNsedJuJZ1I,9445
189
+ mixpeek/retriever_interactions.py,sha256=vCg6EH8iJONFF8ydlLCxC5LwA57Zth49eTqTUZamkBY,43711
190
+ mixpeek/retriever_stages.py,sha256=E-Pp-YMhWmD88aH3F9b26PiFGVIKTD6i228DVOL-P7w,9818
191
+ mixpeek/retrievers.py,sha256=oBlkS426_q4nkwzaaJ1PB1yzFzMnfdkpwBG8Dtqkins,38408
192
+ mixpeek/sdk.py,sha256=BQwIDrO09b0lBMU7Xjpt48ntjSQCMZY19Wn7mTbZF3k,8135
193
+ mixpeek/sdkconfiguration.py,sha256=edo_sMUCQonuwfrmTs-hmOM3oO4-e6f2r_2__q4IMDM,1787
194
+ mixpeek/tasks.py,sha256=h42XMf_kTU4Ka455GWFBQwo-L-YLM9BVfPu1GxO55jo,29222
195
+ mixpeek/taxonomies.py,sha256=l_o5OqACqdk_v-BCg0oHq1quZVChpgpXa9635CMDgbM,11250
196
+ mixpeek/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
197
+ mixpeek/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
198
+ mixpeek/users.py,sha256=0xOVKs8EVYGBn6klp0iFo3Qcd36pnLaUUResKMf5VxM,27254
199
+ mixpeek/utils/__init__.py,sha256=A7_RAc6uLoQYKGunLRFg8cTYYvM4WgoM7Da50PYZOoU,2456
200
+ mixpeek/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
201
+ mixpeek/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
202
+ mixpeek/utils/eventstreaming.py,sha256=LtcrfJYw4nP2Oe4Wl0-cEURLzRGYReRGWNFY5wYECIE,6186
203
+ mixpeek/utils/forms.py,sha256=YSSijXrsM2nfrRHlPQejh1uRRKfoILomHL3d9xpJiy8,6058
204
+ mixpeek/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
205
+ mixpeek/utils/logger.py,sha256=xTNpnfLxFJ0_ntAEHhfzTwYZMnuv6aIiw-7uzA-SBqI,673
206
+ mixpeek/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
207
+ mixpeek/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEtI,5899
208
+ mixpeek/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
209
+ mixpeek/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
210
+ mixpeek/utils/security.py,sha256=XoK-R2YMyZtVWQte7FoezfGJS-dea9jz4qQ7w5dwNWc,6002
211
+ mixpeek/utils/serializers.py,sha256=EGH40Pgp3sSK9uM4PxL7_SYzSHtmo-Uy6QIE5xLVg68,5198
212
+ mixpeek/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
213
+ mixpeek/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
214
+ mixpeek-0.21.1.dist-info/METADATA,sha256=u4uXMGaJGubVk14LNnv1TGiSBNUdw6Js74EP4kn1QeU,27384
215
+ mixpeek-0.21.1.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
216
+ mixpeek-0.21.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.1
2
+ Generator: poetry-core 2.1.2
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,16 +0,0 @@
1
- """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
-
3
- from __future__ import annotations
4
- from mixpeek.types import BaseModel
5
- from typing_extensions import TypedDict
6
-
7
-
8
- class ActionUsageTypedDict(TypedDict):
9
- action: str
10
- credits: int
11
-
12
-
13
- class ActionUsage(BaseModel):
14
- action: str
15
-
16
- credits: int