mixpeek 0.12.0__py3-none-any.whl → 0.13__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 (270) hide show
  1. mixpeek/__init__.py +5 -79
  2. mixpeek/_hooks/__init__.py +5 -0
  3. mixpeek/_hooks/registration.py +13 -0
  4. mixpeek/_hooks/sdkhooks.py +76 -0
  5. mixpeek/_hooks/types.py +94 -0
  6. mixpeek/_version.py +11 -3
  7. mixpeek/assets.py +1561 -0
  8. mixpeek/basesdk.py +350 -0
  9. mixpeek/collections.py +1029 -0
  10. mixpeek/featureextractors.py +205 -0
  11. mixpeek/features.py +1181 -0
  12. mixpeek/health.py +167 -0
  13. mixpeek/httpclient.py +84 -0
  14. mixpeek/ingest.py +831 -0
  15. mixpeek/interactions.py +221 -0
  16. mixpeek/models/__init__.py +751 -0
  17. mixpeek/models/actionusage.py +16 -0
  18. mixpeek/models/apierror.py +22 -0
  19. mixpeek/models/apikey.py +25 -0
  20. mixpeek/models/apikeyupdate.py +49 -0
  21. mixpeek/models/assetfeatures.py +55 -0
  22. mixpeek/models/assetresponse.py +166 -0
  23. mixpeek/models/assets_model_searchquery.py +21 -0
  24. mixpeek/models/assetupdate.py +28 -0
  25. mixpeek/models/availableindexesresponse.py +23 -0
  26. mixpeek/models/availablemodels.py +12 -0
  27. mixpeek/models/boolindexparams.py +18 -0
  28. mixpeek/models/collectionmodel.py +70 -0
  29. mixpeek/models/collectionresult.py +73 -0
  30. mixpeek/models/create_api_key_organizations_users_user_email_api_keys_postop.py +23 -0
  31. mixpeek/models/create_collection_collections_postop.py +62 -0
  32. mixpeek/models/create_interaction_features_search_interactions_postop.py +59 -0
  33. mixpeek/models/createcollectionrequest.py +59 -0
  34. mixpeek/models/createnamespacerequest.py +62 -0
  35. mixpeek/models/datetimeindexparams.py +18 -0
  36. mixpeek/models/dateusage.py +22 -0
  37. mixpeek/models/db_model_paginationresponse.py +59 -0
  38. mixpeek/models/db_model_taskresponse.py +20 -0
  39. mixpeek/models/delete_api_key_organizations_users_user_email_api_keys_key_name_deleteop.py +23 -0
  40. mixpeek/models/delete_asset_assets_asset_id_deleteop.py +57 -0
  41. mixpeek/models/delete_collection_collections_collection_deleteop.py +59 -0
  42. mixpeek/models/delete_feature_features_feature_id_deleteop.py +57 -0
  43. mixpeek/models/delete_interaction_features_search_interactions_interaction_id_deleteop.py +59 -0
  44. mixpeek/models/delete_namespace_namespaces_namespace_deleteop.py +18 -0
  45. mixpeek/models/delete_user_organizations_users_user_email_deleteop.py +16 -0
  46. mixpeek/models/denseembedding.py +16 -0
  47. mixpeek/models/embeddingrequest.py +59 -0
  48. mixpeek/models/embeddingresponse.py +64 -0
  49. mixpeek/models/errormessage.py +13 -0
  50. mixpeek/models/errorresponse.py +21 -0
  51. mixpeek/models/facedetectsettings.py +52 -0
  52. mixpeek/models/featureextractionembeddingrequest.py +54 -0
  53. mixpeek/models/featureresponse.py +74 -0
  54. mixpeek/models/features_model_paginationresponse.py +59 -0
  55. mixpeek/models/featureupdaterequest.py +21 -0
  56. mixpeek/models/filtercondition.py +74 -0
  57. mixpeek/models/floatindexparams.py +18 -0
  58. mixpeek/models/full_asset_update_assets_asset_id_putop.py +69 -0
  59. mixpeek/models/full_feature_update_features_feature_id_putop.py +69 -0
  60. mixpeek/models/geoindexparams.py +18 -0
  61. mixpeek/models/get_asset_assets_asset_id_getop.py +73 -0
  62. mixpeek/models/get_asset_with_features_assets_asset_id_features_getop.py +73 -0
  63. mixpeek/models/get_collection_collections_collection_getop.py +59 -0
  64. mixpeek/models/get_feature_features_feature_id_getop.py +70 -0
  65. mixpeek/models/get_interaction_features_search_interactions_interaction_id_getop.py +59 -0
  66. mixpeek/models/get_namespace_namespaces_namespace_getop.py +18 -0
  67. mixpeek/models/get_task_tasks_task_id_getop.py +57 -0
  68. mixpeek/models/get_user_organizations_users_user_email_getop.py +16 -0
  69. mixpeek/models/groupbyoptions.py +71 -0
  70. mixpeek/models/groupbyoptionsasset.py +71 -0
  71. mixpeek/models/groupedassetdata.py +18 -0
  72. mixpeek/models/healthcheckresponse.py +13 -0
  73. mixpeek/models/httpvalidationerror.py +21 -0
  74. mixpeek/models/imagedescribesettings.py +82 -0
  75. mixpeek/models/imagedetectsettings.py +53 -0
  76. mixpeek/models/imagereadsettings.py +71 -0
  77. mixpeek/models/imagesettings.py +79 -0
  78. mixpeek/models/ingest_image_url_ingest_images_url_postop.py +59 -0
  79. mixpeek/models/ingest_text_ingest_text_postop.py +59 -0
  80. mixpeek/models/ingest_video_url_ingest_videos_url_postop.py +59 -0
  81. mixpeek/models/inputtype.py +11 -0
  82. mixpeek/models/integerindexparams.py +24 -0
  83. mixpeek/models/interactionresponse.py +87 -0
  84. mixpeek/models/interactiontype.py +11 -0
  85. mixpeek/models/jsonimageoutputsettings.py +55 -0
  86. mixpeek/models/jsontextoutputsettings.py +55 -0
  87. mixpeek/models/jsonvideooutputsettings.py +55 -0
  88. mixpeek/models/keywordindexparams.py +21 -0
  89. mixpeek/models/kill_task_tasks_task_id_deleteop.py +57 -0
  90. mixpeek/models/list_assets_assets_postop.py +77 -0
  91. mixpeek/models/list_collections_collections_getop.py +65 -0
  92. mixpeek/models/list_features_features_postop.py +79 -0
  93. mixpeek/models/list_interactions_features_search_interactions_getop.py +96 -0
  94. mixpeek/models/listassetsrequest.py +75 -0
  95. mixpeek/models/listassetsresponse.py +22 -0
  96. mixpeek/models/listcollectionsresponse.py +22 -0
  97. mixpeek/models/listfeaturesrequest.py +77 -0
  98. mixpeek/models/listfeaturesresponse.py +22 -0
  99. mixpeek/models/logicaloperator_input.py +88 -0
  100. mixpeek/models/logicaloperator_output.py +103 -0
  101. mixpeek/models/logodetectsettings.py +52 -0
  102. mixpeek/models/modality.py +13 -0
  103. mixpeek/models/modeldetails.py +57 -0
  104. mixpeek/models/namespaceresponse.py +54 -0
  105. mixpeek/models/organizationmodel.py +45 -0
  106. mixpeek/models/partial_asset_update_assets_asset_id_patchop.py +69 -0
  107. mixpeek/models/payloadindexconfig.py +94 -0
  108. mixpeek/models/payloadindextype.py +17 -0
  109. mixpeek/models/payloadschematype.py +15 -0
  110. mixpeek/models/percolaterequest.py +57 -0
  111. mixpeek/models/permission.py +10 -0
  112. mixpeek/models/processimageurlinput.py +99 -0
  113. mixpeek/models/processtextinput.py +94 -0
  114. mixpeek/models/processvideourlinput.py +99 -0
  115. mixpeek/models/querysettings.py +56 -0
  116. mixpeek/models/rerankingoptions.py +47 -0
  117. mixpeek/models/search_assets_assets_search_postop.py +59 -0
  118. mixpeek/models/search_features_features_search_postop.py +96 -0
  119. mixpeek/models/search_model_searchquery_input.py +76 -0
  120. mixpeek/models/searchassetsrequest.py +78 -0
  121. mixpeek/models/searchinteraction.py +82 -0
  122. mixpeek/models/searchquery_output.py +79 -0
  123. mixpeek/models/searchrequestfeatures_input.py +151 -0
  124. mixpeek/models/searchrequestfeatures_output.py +151 -0
  125. mixpeek/models/sortoption.py +28 -0
  126. mixpeek/models/sparseembedding.py +21 -0
  127. mixpeek/models/tasks_model_taskresponse.py +24 -0
  128. mixpeek/models/taskstatus.py +16 -0
  129. mixpeek/models/textindexparams.py +31 -0
  130. mixpeek/models/textsettings.py +61 -0
  131. mixpeek/models/tokenizertype.py +11 -0
  132. mixpeek/models/update_api_key_organizations_users_user_email_api_keys_key_name_patchop.py +30 -0
  133. mixpeek/models/update_collection_collections_collection_putop.py +74 -0
  134. mixpeek/models/update_namespace_namespaces_namespace_putop.py +28 -0
  135. mixpeek/models/updateassetrequest.py +60 -0
  136. mixpeek/models/updatenamespacerequest.py +26 -0
  137. mixpeek/models/usage.py +18 -0
  138. mixpeek/models/usermodel_input.py +36 -0
  139. mixpeek/models/usermodel_output.py +36 -0
  140. mixpeek/models/uuidindexparams.py +21 -0
  141. mixpeek/models/validationerror.py +26 -0
  142. mixpeek/models/vectormodel.py +11 -0
  143. mixpeek/models/vectortype.py +9 -0
  144. mixpeek/models/videodescribesettings.py +82 -0
  145. mixpeek/models/videodetectsettings.py +53 -0
  146. mixpeek/models/videoreadsettings.py +71 -0
  147. mixpeek/models/videosettings.py +101 -0
  148. mixpeek/models/videotranscriptionsettings.py +69 -0
  149. mixpeek/namespaces.py +1143 -0
  150. mixpeek/organizations.py +1508 -0
  151. mixpeek/py.typed +1 -0
  152. mixpeek/sdk.py +135 -0
  153. mixpeek/sdkconfiguration.py +45 -0
  154. mixpeek/searchinteractions.py +647 -0
  155. mixpeek/tasks.py +387 -0
  156. mixpeek/types/__init__.py +19 -29
  157. mixpeek/types/basemodel.py +39 -0
  158. mixpeek/utils/__init__.py +97 -0
  159. mixpeek/utils/annotations.py +55 -0
  160. mixpeek/utils/enums.py +34 -0
  161. mixpeek/utils/eventstreaming.py +238 -0
  162. mixpeek/utils/forms.py +202 -0
  163. mixpeek/utils/headers.py +136 -0
  164. mixpeek/utils/logger.py +27 -0
  165. mixpeek/utils/metadata.py +118 -0
  166. mixpeek/utils/queryparams.py +205 -0
  167. mixpeek/utils/requestbodies.py +66 -0
  168. mixpeek/utils/retries.py +217 -0
  169. mixpeek/utils/security.py +174 -0
  170. mixpeek/utils/serializers.py +215 -0
  171. mixpeek/utils/url.py +155 -0
  172. mixpeek/utils/values.py +134 -0
  173. mixpeek-0.13.dist-info/METADATA +439 -0
  174. mixpeek-0.13.dist-info/RECORD +176 -0
  175. {mixpeek-0.12.0.dist-info → mixpeek-0.13.dist-info}/WHEEL +1 -1
  176. py.typed +1 -0
  177. mixpeek/_base_client.py +0 -2041
  178. mixpeek/_client.py +0 -444
  179. mixpeek/_compat.py +0 -221
  180. mixpeek/_constants.py +0 -14
  181. mixpeek/_exceptions.py +0 -108
  182. mixpeek/_files.py +0 -123
  183. mixpeek/_models.py +0 -788
  184. mixpeek/_qs.py +0 -150
  185. mixpeek/_resource.py +0 -43
  186. mixpeek/_response.py +0 -824
  187. mixpeek/_streaming.py +0 -333
  188. mixpeek/_types.py +0 -219
  189. mixpeek/_utils/__init__.py +0 -56
  190. mixpeek/_utils/_logs.py +0 -25
  191. mixpeek/_utils/_proxy.py +0 -62
  192. mixpeek/_utils/_reflection.py +0 -42
  193. mixpeek/_utils/_streams.py +0 -12
  194. mixpeek/_utils/_sync.py +0 -81
  195. mixpeek/_utils/_transform.py +0 -387
  196. mixpeek/_utils/_typing.py +0 -120
  197. mixpeek/_utils/_utils.py +0 -414
  198. mixpeek/lib/.keep +0 -4
  199. mixpeek/resources/__init__.py +0 -117
  200. mixpeek/resources/accounts.py +0 -271
  201. mixpeek/resources/assets/__init__.py +0 -33
  202. mixpeek/resources/assets/assets.py +0 -708
  203. mixpeek/resources/assets/features.py +0 -172
  204. mixpeek/resources/collections.py +0 -283
  205. mixpeek/resources/entities/__init__.py +0 -47
  206. mixpeek/resources/entities/entities.py +0 -134
  207. mixpeek/resources/entities/faces.py +0 -514
  208. mixpeek/resources/entities/labels.py +0 -388
  209. mixpeek/resources/features/__init__.py +0 -33
  210. mixpeek/resources/features/features.py +0 -562
  211. mixpeek/resources/features/search.py +0 -731
  212. mixpeek/resources/healthcheck.py +0 -135
  213. mixpeek/resources/index/__init__.py +0 -47
  214. mixpeek/resources/index/images.py +0 -249
  215. mixpeek/resources/index/index.py +0 -289
  216. mixpeek/resources/index/videos.py +0 -249
  217. mixpeek/resources/tasks.py +0 -258
  218. mixpeek/types/account_update_params.py +0 -28
  219. mixpeek/types/asset_create_params.py +0 -36
  220. mixpeek/types/asset_create_response.py +0 -15
  221. mixpeek/types/asset_response.py +0 -46
  222. mixpeek/types/asset_search_params.py +0 -43
  223. mixpeek/types/asset_search_response.py +0 -15
  224. mixpeek/types/asset_update_params.py +0 -25
  225. mixpeek/types/asset_update_response.py +0 -11
  226. mixpeek/types/assets/__init__.py +0 -3
  227. mixpeek/types/collection_list_params.py +0 -19
  228. mixpeek/types/collection_list_response.py +0 -14
  229. mixpeek/types/entities/__init__.py +0 -13
  230. mixpeek/types/entities/face_create_params.py +0 -21
  231. mixpeek/types/entities/face_list_params.py +0 -18
  232. mixpeek/types/entities/face_list_response.py +0 -15
  233. mixpeek/types/entities/face_response.py +0 -17
  234. mixpeek/types/entities/face_update_params.py +0 -22
  235. mixpeek/types/entities/label_list_params.py +0 -18
  236. mixpeek/types/entities/label_list_response.py +0 -30
  237. mixpeek/types/entities/label_response.py +0 -30
  238. mixpeek/types/entities/label_update_params.py +0 -21
  239. mixpeek/types/feature.py +0 -32
  240. mixpeek/types/feature_list_params.py +0 -37
  241. mixpeek/types/feature_list_response.py +0 -28
  242. mixpeek/types/feature_retrieve_params.py +0 -18
  243. mixpeek/types/feature_update_params.py +0 -16
  244. mixpeek/types/features/__init__.py +0 -8
  245. mixpeek/types/features/search_feedback_params.py +0 -23
  246. mixpeek/types/features/search_file_params.py +0 -29
  247. mixpeek/types/features/search_text_params.py +0 -72
  248. mixpeek/types/features/search_url_params.py +0 -72
  249. mixpeek/types/grouped_asset_data.py +0 -24
  250. mixpeek/types/health_check_response.py +0 -10
  251. mixpeek/types/index/__init__.py +0 -8
  252. mixpeek/types/index/image_url_params.py +0 -135
  253. mixpeek/types/index/image_url_response.py +0 -20
  254. mixpeek/types/index/video_url_params.py +0 -154
  255. mixpeek/types/index/video_url_response.py +0 -20
  256. mixpeek/types/index_text_params.py +0 -77
  257. mixpeek/types/index_text_response.py +0 -14
  258. mixpeek/types/shared/__init__.py +0 -7
  259. mixpeek/types/shared/filter_condition.py +0 -19
  260. mixpeek/types/shared/logical_operator.py +0 -12
  261. mixpeek/types/shared/model_pagination_response.py +0 -21
  262. mixpeek/types/shared/sort_option.py +0 -15
  263. mixpeek/types/shared/task_response.py +0 -15
  264. mixpeek/types/shared_params/__init__.py +0 -4
  265. mixpeek/types/shared_params/logical_operator.py +0 -13
  266. mixpeek/types/shared_params/sort_option.py +0 -15
  267. mixpeek/types/user.py +0 -34
  268. mixpeek-0.12.0.dist-info/METADATA +0 -345
  269. mixpeek-0.12.0.dist-info/RECORD +0 -99
  270. mixpeek-0.12.0.dist-info/licenses/LICENSE +0 -201
@@ -0,0 +1,751 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from .actionusage import ActionUsage, ActionUsageTypedDict
4
+ from .apierror import APIError
5
+ from .apikey import APIKey, APIKeyTypedDict
6
+ from .apikeyupdate import APIKeyUpdate, APIKeyUpdateTypedDict
7
+ from .assetfeatures import AssetFeatures, AssetFeaturesTypedDict
8
+ from .assetresponse import (
9
+ AssetResponse,
10
+ AssetResponseMetadata,
11
+ AssetResponseMetadataTypedDict,
12
+ AssetResponseTypedDict,
13
+ FileData,
14
+ FileDataTypedDict,
15
+ )
16
+ from .assets_model_searchquery import (
17
+ AssetsModelSearchQuery,
18
+ AssetsModelSearchQueryTypedDict,
19
+ )
20
+ from .assetupdate import AssetUpdate, AssetUpdateTypedDict, Mode
21
+ from .availableindexesresponse import (
22
+ AvailableIndexesResponse,
23
+ AvailableIndexesResponseTypedDict,
24
+ )
25
+ from .availablemodels import AvailableModels
26
+ from .boolindexparams import BoolIndexParams, BoolIndexParamsTypedDict
27
+ from .collectionmodel import (
28
+ CollectionModel,
29
+ CollectionModelMetadata,
30
+ CollectionModelMetadataTypedDict,
31
+ CollectionModelTypedDict,
32
+ )
33
+ from .collectionresult import (
34
+ CollectionResult,
35
+ CollectionResultMetadata,
36
+ CollectionResultMetadataTypedDict,
37
+ CollectionResultTypedDict,
38
+ )
39
+ from .create_api_key_organizations_users_user_email_api_keys_postop import (
40
+ CreateAPIKeyOrganizationsUsersUserEmailAPIKeysPostRequest,
41
+ CreateAPIKeyOrganizationsUsersUserEmailAPIKeysPostRequestTypedDict,
42
+ )
43
+ from .create_collection_collections_postop import (
44
+ CreateCollectionCollectionsPostRequest,
45
+ CreateCollectionCollectionsPostRequestTypedDict,
46
+ )
47
+ from .create_interaction_features_search_interactions_postop import (
48
+ CreateInteractionFeaturesSearchInteractionsPostRequest,
49
+ CreateInteractionFeaturesSearchInteractionsPostRequestTypedDict,
50
+ )
51
+ from .createcollectionrequest import (
52
+ CreateCollectionRequest,
53
+ CreateCollectionRequestMetadata,
54
+ CreateCollectionRequestMetadataTypedDict,
55
+ CreateCollectionRequestTypedDict,
56
+ )
57
+ from .createnamespacerequest import (
58
+ CreateNamespaceRequest,
59
+ CreateNamespaceRequestTypedDict,
60
+ )
61
+ from .datetimeindexparams import DatetimeIndexParams, DatetimeIndexParamsTypedDict
62
+ from .dateusage import DateUsage, DateUsageTypedDict
63
+ from .db_model_paginationresponse import (
64
+ DbModelPaginationResponse,
65
+ DbModelPaginationResponseTypedDict,
66
+ )
67
+ from .db_model_taskresponse import DbModelTaskResponse, DbModelTaskResponseTypedDict
68
+ from .delete_api_key_organizations_users_user_email_api_keys_key_name_deleteop import (
69
+ DeleteAPIKeyOrganizationsUsersUserEmailAPIKeysKeyNameDeleteRequest,
70
+ DeleteAPIKeyOrganizationsUsersUserEmailAPIKeysKeyNameDeleteRequestTypedDict,
71
+ )
72
+ from .delete_asset_assets_asset_id_deleteop import (
73
+ DeleteAssetAssetsAssetIDDeleteRequest,
74
+ DeleteAssetAssetsAssetIDDeleteRequestTypedDict,
75
+ )
76
+ from .delete_collection_collections_collection_deleteop import (
77
+ DeleteCollectionCollectionsCollectionDeleteRequest,
78
+ DeleteCollectionCollectionsCollectionDeleteRequestTypedDict,
79
+ )
80
+ from .delete_feature_features_feature_id_deleteop import (
81
+ DeleteFeatureFeaturesFeatureIDDeleteRequest,
82
+ DeleteFeatureFeaturesFeatureIDDeleteRequestTypedDict,
83
+ )
84
+ from .delete_interaction_features_search_interactions_interaction_id_deleteop import (
85
+ DeleteInteractionFeaturesSearchInteractionsInteractionIDDeleteRequest,
86
+ DeleteInteractionFeaturesSearchInteractionsInteractionIDDeleteRequestTypedDict,
87
+ )
88
+ from .delete_namespace_namespaces_namespace_deleteop import (
89
+ DeleteNamespaceNamespacesNamespaceDeleteRequest,
90
+ DeleteNamespaceNamespacesNamespaceDeleteRequestTypedDict,
91
+ )
92
+ from .delete_user_organizations_users_user_email_deleteop import (
93
+ DeleteUserOrganizationsUsersUserEmailDeleteRequest,
94
+ DeleteUserOrganizationsUsersUserEmailDeleteRequestTypedDict,
95
+ )
96
+ from .denseembedding import DenseEmbedding, DenseEmbeddingTypedDict
97
+ from .embeddingrequest import EmbeddingRequest, EmbeddingRequestTypedDict
98
+ from .embeddingresponse import (
99
+ Embedding,
100
+ EmbeddingResponse,
101
+ EmbeddingResponseTypedDict,
102
+ EmbeddingTypedDict,
103
+ )
104
+ from .errormessage import ErrorMessage, ErrorMessageTypedDict
105
+ from .errorresponse import ErrorResponse, ErrorResponseData
106
+ from .facedetectsettings import FaceDetectSettings, FaceDetectSettingsTypedDict
107
+ from .featureextractionembeddingrequest import (
108
+ FeatureExtractionEmbeddingRequest,
109
+ FeatureExtractionEmbeddingRequestTypedDict,
110
+ )
111
+ from .featureresponse import FeatureResponse, FeatureResponseTypedDict
112
+ from .features_model_paginationresponse import (
113
+ FeaturesModelPaginationResponse,
114
+ FeaturesModelPaginationResponseTypedDict,
115
+ )
116
+ from .featureupdaterequest import (
117
+ FeatureUpdateRequest,
118
+ FeatureUpdateRequestMetadata,
119
+ FeatureUpdateRequestMetadataTypedDict,
120
+ FeatureUpdateRequestTypedDict,
121
+ )
122
+ from .filtercondition import FilterCondition, FilterConditionTypedDict, Operator
123
+ from .floatindexparams import FloatIndexParams, FloatIndexParamsTypedDict
124
+ from .full_asset_update_assets_asset_id_putop import (
125
+ FullAssetUpdateAssetsAssetIDPutRequest,
126
+ FullAssetUpdateAssetsAssetIDPutRequestTypedDict,
127
+ )
128
+ from .full_feature_update_features_feature_id_putop import (
129
+ FullFeatureUpdateFeaturesFeatureIDPutRequest,
130
+ FullFeatureUpdateFeaturesFeatureIDPutRequestTypedDict,
131
+ )
132
+ from .geoindexparams import GeoIndexParams, GeoIndexParamsTypedDict
133
+ from .get_asset_assets_asset_id_getop import (
134
+ GetAssetAssetsAssetIDGetRequest,
135
+ GetAssetAssetsAssetIDGetRequestTypedDict,
136
+ )
137
+ from .get_asset_with_features_assets_asset_id_features_getop import (
138
+ GetAssetWithFeaturesAssetsAssetIDFeaturesGetRequest,
139
+ GetAssetWithFeaturesAssetsAssetIDFeaturesGetRequestTypedDict,
140
+ )
141
+ from .get_collection_collections_collection_getop import (
142
+ GetCollectionCollectionsCollectionGetRequest,
143
+ GetCollectionCollectionsCollectionGetRequestTypedDict,
144
+ )
145
+ from .get_feature_features_feature_id_getop import (
146
+ GetFeatureFeaturesFeatureIDGetRequest,
147
+ GetFeatureFeaturesFeatureIDGetRequestTypedDict,
148
+ )
149
+ from .get_interaction_features_search_interactions_interaction_id_getop import (
150
+ GetInteractionFeaturesSearchInteractionsInteractionIDGetRequest,
151
+ GetInteractionFeaturesSearchInteractionsInteractionIDGetRequestTypedDict,
152
+ )
153
+ from .get_namespace_namespaces_namespace_getop import (
154
+ GetNamespaceNamespacesNamespaceGetRequest,
155
+ GetNamespaceNamespacesNamespaceGetRequestTypedDict,
156
+ )
157
+ from .get_task_tasks_task_id_getop import (
158
+ GetTaskTasksTaskIDGetRequest,
159
+ GetTaskTasksTaskIDGetRequestTypedDict,
160
+ )
161
+ from .get_user_organizations_users_user_email_getop import (
162
+ GetUserOrganizationsUsersUserEmailGetRequest,
163
+ GetUserOrganizationsUsersUserEmailGetRequestTypedDict,
164
+ )
165
+ from .groupbyoptions import GroupByOptions, GroupByOptionsTypedDict
166
+ from .groupbyoptionsasset import GroupByOptionsAsset, GroupByOptionsAssetTypedDict
167
+ from .groupedassetdata import GroupedAssetData, GroupedAssetDataTypedDict
168
+ from .healthcheckresponse import HealthCheckResponse, HealthCheckResponseTypedDict
169
+ from .httpvalidationerror import HTTPValidationError, HTTPValidationErrorData
170
+ from .imagedescribesettings import (
171
+ ImageDescribeSettings,
172
+ ImageDescribeSettingsJSONOutput,
173
+ ImageDescribeSettingsJSONOutputTypedDict,
174
+ ImageDescribeSettingsTypedDict,
175
+ )
176
+ from .imagedetectsettings import ImageDetectSettings, ImageDetectSettingsTypedDict
177
+ from .imagereadsettings import (
178
+ ImageReadSettings,
179
+ ImageReadSettingsJSONOutput,
180
+ ImageReadSettingsJSONOutputTypedDict,
181
+ ImageReadSettingsTypedDict,
182
+ )
183
+ from .imagesettings import ImageSettings, ImageSettingsTypedDict
184
+ from .ingest_image_url_ingest_images_url_postop import (
185
+ IngestImageURLIngestImagesURLPostRequest,
186
+ IngestImageURLIngestImagesURLPostRequestTypedDict,
187
+ )
188
+ from .ingest_text_ingest_text_postop import (
189
+ IngestTextIngestTextPostRequest,
190
+ IngestTextIngestTextPostRequestTypedDict,
191
+ )
192
+ from .ingest_video_url_ingest_videos_url_postop import (
193
+ IngestVideoURLIngestVideosURLPostRequest,
194
+ IngestVideoURLIngestVideosURLPostRequestTypedDict,
195
+ )
196
+ from .inputtype import InputType
197
+ from .integerindexparams import IntegerIndexParams, IntegerIndexParamsTypedDict
198
+ from .interactionresponse import (
199
+ InteractionResponse,
200
+ InteractionResponseMetadata,
201
+ InteractionResponseMetadataTypedDict,
202
+ InteractionResponseTypedDict,
203
+ )
204
+ from .interactiontype import InteractionType
205
+ from .jsonimageoutputsettings import (
206
+ JSONImageOutputSettings,
207
+ JSONImageOutputSettingsResponseShape,
208
+ JSONImageOutputSettingsResponseShapeTypedDict,
209
+ JSONImageOutputSettingsTypedDict,
210
+ )
211
+ from .jsontextoutputsettings import (
212
+ JSONTextOutputSettings,
213
+ JSONTextOutputSettingsTypedDict,
214
+ ResponseShape,
215
+ ResponseShapeTypedDict,
216
+ )
217
+ from .jsonvideooutputsettings import (
218
+ JSONVideoOutputSettings,
219
+ JSONVideoOutputSettingsResponseShape,
220
+ JSONVideoOutputSettingsResponseShapeTypedDict,
221
+ JSONVideoOutputSettingsTypedDict,
222
+ )
223
+ from .keywordindexparams import KeywordIndexParams, KeywordIndexParamsTypedDict
224
+ from .kill_task_tasks_task_id_deleteop import (
225
+ KillTaskTasksTaskIDDeleteRequest,
226
+ KillTaskTasksTaskIDDeleteRequestTypedDict,
227
+ )
228
+ from .list_assets_assets_postop import (
229
+ ListAssetsAssetsPostRequest,
230
+ ListAssetsAssetsPostRequestTypedDict,
231
+ )
232
+ from .list_collections_collections_getop import (
233
+ ListCollectionsCollectionsGetRequest,
234
+ ListCollectionsCollectionsGetRequestTypedDict,
235
+ )
236
+ from .list_features_features_postop import (
237
+ ListFeaturesFeaturesPostRequest,
238
+ ListFeaturesFeaturesPostRequestTypedDict,
239
+ )
240
+ from .list_interactions_features_search_interactions_getop import (
241
+ ListInteractionsFeaturesSearchInteractionsGetRequest,
242
+ ListInteractionsFeaturesSearchInteractionsGetRequestTypedDict,
243
+ )
244
+ from .listassetsrequest import ListAssetsRequest, ListAssetsRequestTypedDict
245
+ from .listassetsresponse import ListAssetsResponse, ListAssetsResponseTypedDict
246
+ from .listcollectionsresponse import (
247
+ ListCollectionsResponse,
248
+ ListCollectionsResponseTypedDict,
249
+ )
250
+ from .listfeaturesrequest import ListFeaturesRequest, ListFeaturesRequestTypedDict
251
+ from .listfeaturesresponse import ListFeaturesResponse, ListFeaturesResponseTypedDict
252
+ from .logicaloperator_input import (
253
+ And,
254
+ AndTypedDict,
255
+ LogicalOperatorInput,
256
+ LogicalOperatorInputTypedDict,
257
+ Nor,
258
+ NorTypedDict,
259
+ Or,
260
+ OrTypedDict,
261
+ )
262
+ from .logicaloperator_output import (
263
+ LogicalOperatorOutput,
264
+ LogicalOperatorOutputAND,
265
+ LogicalOperatorOutputANDTypedDict,
266
+ LogicalOperatorOutputNOR,
267
+ LogicalOperatorOutputNORTypedDict,
268
+ LogicalOperatorOutputOR,
269
+ LogicalOperatorOutputORTypedDict,
270
+ LogicalOperatorOutputTypedDict,
271
+ )
272
+ from .logodetectsettings import LogoDetectSettings, LogoDetectSettingsTypedDict
273
+ from .modality import Modality
274
+ from .modeldetails import ModelDetails, ModelDetailsTypedDict
275
+ from .namespaceresponse import NamespaceResponse, NamespaceResponseTypedDict
276
+ from .organizationmodel import (
277
+ OrganizationModel,
278
+ OrganizationModelMetadata,
279
+ OrganizationModelMetadataTypedDict,
280
+ OrganizationModelTypedDict,
281
+ )
282
+ from .partial_asset_update_assets_asset_id_patchop import (
283
+ PartialAssetUpdateAssetsAssetIDPatchRequest,
284
+ PartialAssetUpdateAssetsAssetIDPatchRequestTypedDict,
285
+ )
286
+ from .payloadindexconfig import (
287
+ FieldSchema,
288
+ FieldSchemaTypedDict,
289
+ PayloadIndexConfig,
290
+ PayloadIndexConfigTypedDict,
291
+ )
292
+ from .payloadindextype import PayloadIndexType, PayloadIndexTypeTypedDict
293
+ from .payloadschematype import PayloadSchemaType
294
+ from .percolaterequest import PercolateRequest, PercolateRequestTypedDict
295
+ from .permission import Permission
296
+ from .processimageurlinput import (
297
+ ProcessImageURLInput,
298
+ ProcessImageURLInputMetadata,
299
+ ProcessImageURLInputMetadataTypedDict,
300
+ ProcessImageURLInputTypedDict,
301
+ )
302
+ from .processtextinput import (
303
+ ProcessTextInput,
304
+ ProcessTextInputMetadata,
305
+ ProcessTextInputMetadataTypedDict,
306
+ ProcessTextInputTypedDict,
307
+ )
308
+ from .processvideourlinput import (
309
+ ProcessVideoURLInput,
310
+ ProcessVideoURLInputMetadata,
311
+ ProcessVideoURLInputMetadataTypedDict,
312
+ ProcessVideoURLInputTypedDict,
313
+ )
314
+ from .querysettings import QuerySettings, QuerySettingsTypedDict
315
+ from .rerankingoptions import RerankingOptions, RerankingOptionsTypedDict
316
+ from .search_assets_assets_search_postop import (
317
+ SearchAssetsAssetsSearchPostRequest,
318
+ SearchAssetsAssetsSearchPostRequestTypedDict,
319
+ )
320
+ from .search_features_features_search_postop import (
321
+ SearchFeaturesFeaturesSearchPostRequest,
322
+ SearchFeaturesFeaturesSearchPostRequestTypedDict,
323
+ SearchFeaturesFeaturesSearchPostResponseSearchFeaturesFeaturesSearchPost,
324
+ SearchFeaturesFeaturesSearchPostResponseSearchFeaturesFeaturesSearchPostTypedDict,
325
+ )
326
+ from .search_model_searchquery_input import (
327
+ SearchModelSearchQueryInput,
328
+ SearchModelSearchQueryInputTypedDict,
329
+ Type,
330
+ )
331
+ from .searchassetsrequest import SearchAssetsRequest, SearchAssetsRequestTypedDict
332
+ from .searchinteraction import (
333
+ Metadata,
334
+ MetadataTypedDict,
335
+ SearchInteraction,
336
+ SearchInteractionTypedDict,
337
+ )
338
+ from .searchquery_output import (
339
+ SearchQueryOutput,
340
+ SearchQueryOutputType,
341
+ SearchQueryOutputTypedDict,
342
+ )
343
+ from .searchrequestfeatures_input import (
344
+ SearchRequestFeaturesInput,
345
+ SearchRequestFeaturesInputTypedDict,
346
+ )
347
+ from .searchrequestfeatures_output import (
348
+ SearchRequestFeaturesOutput,
349
+ SearchRequestFeaturesOutputTypedDict,
350
+ )
351
+ from .sortoption import Direction, SortOption, SortOptionTypedDict
352
+ from .sparseembedding import SparseEmbedding, SparseEmbeddingTypedDict
353
+ from .tasks_model_taskresponse import (
354
+ TasksModelTaskResponse,
355
+ TasksModelTaskResponseTypedDict,
356
+ )
357
+ from .taskstatus import TaskStatus
358
+ from .textindexparams import TextIndexParams, TextIndexParamsTypedDict
359
+ from .textsettings import TextSettings, TextSettingsTypedDict
360
+ from .tokenizertype import TokenizerType
361
+ from .update_api_key_organizations_users_user_email_api_keys_key_name_patchop import (
362
+ UpdateAPIKeyOrganizationsUsersUserEmailAPIKeysKeyNamePatchRequest,
363
+ UpdateAPIKeyOrganizationsUsersUserEmailAPIKeysKeyNamePatchRequestTypedDict,
364
+ )
365
+ from .update_collection_collections_collection_putop import (
366
+ UpdateCollectionCollectionsCollectionPutRequest,
367
+ UpdateCollectionCollectionsCollectionPutRequestTypedDict,
368
+ )
369
+ from .update_namespace_namespaces_namespace_putop import (
370
+ UpdateNamespaceNamespacesNamespacePutRequest,
371
+ UpdateNamespaceNamespacesNamespacePutRequestTypedDict,
372
+ )
373
+ from .updateassetrequest import (
374
+ UpdateAssetRequest,
375
+ UpdateAssetRequestMetadata,
376
+ UpdateAssetRequestMetadataTypedDict,
377
+ UpdateAssetRequestTypedDict,
378
+ )
379
+ from .updatenamespacerequest import (
380
+ UpdateNamespaceRequest,
381
+ UpdateNamespaceRequestTypedDict,
382
+ )
383
+ from .usage import Usage, UsageTypedDict
384
+ from .usermodel_input import (
385
+ UserModelInput,
386
+ UserModelInputMetadata,
387
+ UserModelInputMetadataTypedDict,
388
+ UserModelInputTypedDict,
389
+ )
390
+ from .usermodel_output import (
391
+ UserModelOutput,
392
+ UserModelOutputMetadata,
393
+ UserModelOutputMetadataTypedDict,
394
+ UserModelOutputTypedDict,
395
+ )
396
+ from .uuidindexparams import UUIDIndexParams, UUIDIndexParamsTypedDict
397
+ from .validationerror import (
398
+ Loc,
399
+ LocTypedDict,
400
+ ValidationError,
401
+ ValidationErrorTypedDict,
402
+ )
403
+ from .vectormodel import VectorModel
404
+ from .vectortype import VectorType
405
+ from .videodescribesettings import (
406
+ VideoDescribeSettings,
407
+ VideoDescribeSettingsJSONOutput,
408
+ VideoDescribeSettingsJSONOutputTypedDict,
409
+ VideoDescribeSettingsTypedDict,
410
+ )
411
+ from .videodetectsettings import VideoDetectSettings, VideoDetectSettingsTypedDict
412
+ from .videoreadsettings import (
413
+ JSONOutput,
414
+ JSONOutputTypedDict,
415
+ VideoReadSettings,
416
+ VideoReadSettingsTypedDict,
417
+ )
418
+ from .videosettings import VideoSettings, VideoSettingsTypedDict
419
+ from .videotranscriptionsettings import (
420
+ VideoTranscriptionSettings,
421
+ VideoTranscriptionSettingsJSONOutput,
422
+ VideoTranscriptionSettingsJSONOutputTypedDict,
423
+ VideoTranscriptionSettingsTypedDict,
424
+ )
425
+
426
+ __all__ = [
427
+ "APIError",
428
+ "APIKey",
429
+ "APIKeyTypedDict",
430
+ "APIKeyUpdate",
431
+ "APIKeyUpdateTypedDict",
432
+ "ActionUsage",
433
+ "ActionUsageTypedDict",
434
+ "And",
435
+ "AndTypedDict",
436
+ "AssetFeatures",
437
+ "AssetFeaturesTypedDict",
438
+ "AssetResponse",
439
+ "AssetResponseMetadata",
440
+ "AssetResponseMetadataTypedDict",
441
+ "AssetResponseTypedDict",
442
+ "AssetUpdate",
443
+ "AssetUpdateTypedDict",
444
+ "AssetsModelSearchQuery",
445
+ "AssetsModelSearchQueryTypedDict",
446
+ "AvailableIndexesResponse",
447
+ "AvailableIndexesResponseTypedDict",
448
+ "AvailableModels",
449
+ "BoolIndexParams",
450
+ "BoolIndexParamsTypedDict",
451
+ "CollectionModel",
452
+ "CollectionModelMetadata",
453
+ "CollectionModelMetadataTypedDict",
454
+ "CollectionModelTypedDict",
455
+ "CollectionResult",
456
+ "CollectionResultMetadata",
457
+ "CollectionResultMetadataTypedDict",
458
+ "CollectionResultTypedDict",
459
+ "CreateAPIKeyOrganizationsUsersUserEmailAPIKeysPostRequest",
460
+ "CreateAPIKeyOrganizationsUsersUserEmailAPIKeysPostRequestTypedDict",
461
+ "CreateCollectionCollectionsPostRequest",
462
+ "CreateCollectionCollectionsPostRequestTypedDict",
463
+ "CreateCollectionRequest",
464
+ "CreateCollectionRequestMetadata",
465
+ "CreateCollectionRequestMetadataTypedDict",
466
+ "CreateCollectionRequestTypedDict",
467
+ "CreateInteractionFeaturesSearchInteractionsPostRequest",
468
+ "CreateInteractionFeaturesSearchInteractionsPostRequestTypedDict",
469
+ "CreateNamespaceRequest",
470
+ "CreateNamespaceRequestTypedDict",
471
+ "DateUsage",
472
+ "DateUsageTypedDict",
473
+ "DatetimeIndexParams",
474
+ "DatetimeIndexParamsTypedDict",
475
+ "DbModelPaginationResponse",
476
+ "DbModelPaginationResponseTypedDict",
477
+ "DbModelTaskResponse",
478
+ "DbModelTaskResponseTypedDict",
479
+ "DeleteAPIKeyOrganizationsUsersUserEmailAPIKeysKeyNameDeleteRequest",
480
+ "DeleteAPIKeyOrganizationsUsersUserEmailAPIKeysKeyNameDeleteRequestTypedDict",
481
+ "DeleteAssetAssetsAssetIDDeleteRequest",
482
+ "DeleteAssetAssetsAssetIDDeleteRequestTypedDict",
483
+ "DeleteCollectionCollectionsCollectionDeleteRequest",
484
+ "DeleteCollectionCollectionsCollectionDeleteRequestTypedDict",
485
+ "DeleteFeatureFeaturesFeatureIDDeleteRequest",
486
+ "DeleteFeatureFeaturesFeatureIDDeleteRequestTypedDict",
487
+ "DeleteInteractionFeaturesSearchInteractionsInteractionIDDeleteRequest",
488
+ "DeleteInteractionFeaturesSearchInteractionsInteractionIDDeleteRequestTypedDict",
489
+ "DeleteNamespaceNamespacesNamespaceDeleteRequest",
490
+ "DeleteNamespaceNamespacesNamespaceDeleteRequestTypedDict",
491
+ "DeleteUserOrganizationsUsersUserEmailDeleteRequest",
492
+ "DeleteUserOrganizationsUsersUserEmailDeleteRequestTypedDict",
493
+ "DenseEmbedding",
494
+ "DenseEmbeddingTypedDict",
495
+ "Direction",
496
+ "Embedding",
497
+ "EmbeddingRequest",
498
+ "EmbeddingRequestTypedDict",
499
+ "EmbeddingResponse",
500
+ "EmbeddingResponseTypedDict",
501
+ "EmbeddingTypedDict",
502
+ "ErrorMessage",
503
+ "ErrorMessageTypedDict",
504
+ "ErrorResponse",
505
+ "ErrorResponseData",
506
+ "FaceDetectSettings",
507
+ "FaceDetectSettingsTypedDict",
508
+ "FeatureExtractionEmbeddingRequest",
509
+ "FeatureExtractionEmbeddingRequestTypedDict",
510
+ "FeatureResponse",
511
+ "FeatureResponseTypedDict",
512
+ "FeatureUpdateRequest",
513
+ "FeatureUpdateRequestMetadata",
514
+ "FeatureUpdateRequestMetadataTypedDict",
515
+ "FeatureUpdateRequestTypedDict",
516
+ "FeaturesModelPaginationResponse",
517
+ "FeaturesModelPaginationResponseTypedDict",
518
+ "FieldSchema",
519
+ "FieldSchemaTypedDict",
520
+ "FileData",
521
+ "FileDataTypedDict",
522
+ "FilterCondition",
523
+ "FilterConditionTypedDict",
524
+ "FloatIndexParams",
525
+ "FloatIndexParamsTypedDict",
526
+ "FullAssetUpdateAssetsAssetIDPutRequest",
527
+ "FullAssetUpdateAssetsAssetIDPutRequestTypedDict",
528
+ "FullFeatureUpdateFeaturesFeatureIDPutRequest",
529
+ "FullFeatureUpdateFeaturesFeatureIDPutRequestTypedDict",
530
+ "GeoIndexParams",
531
+ "GeoIndexParamsTypedDict",
532
+ "GetAssetAssetsAssetIDGetRequest",
533
+ "GetAssetAssetsAssetIDGetRequestTypedDict",
534
+ "GetAssetWithFeaturesAssetsAssetIDFeaturesGetRequest",
535
+ "GetAssetWithFeaturesAssetsAssetIDFeaturesGetRequestTypedDict",
536
+ "GetCollectionCollectionsCollectionGetRequest",
537
+ "GetCollectionCollectionsCollectionGetRequestTypedDict",
538
+ "GetFeatureFeaturesFeatureIDGetRequest",
539
+ "GetFeatureFeaturesFeatureIDGetRequestTypedDict",
540
+ "GetInteractionFeaturesSearchInteractionsInteractionIDGetRequest",
541
+ "GetInteractionFeaturesSearchInteractionsInteractionIDGetRequestTypedDict",
542
+ "GetNamespaceNamespacesNamespaceGetRequest",
543
+ "GetNamespaceNamespacesNamespaceGetRequestTypedDict",
544
+ "GetTaskTasksTaskIDGetRequest",
545
+ "GetTaskTasksTaskIDGetRequestTypedDict",
546
+ "GetUserOrganizationsUsersUserEmailGetRequest",
547
+ "GetUserOrganizationsUsersUserEmailGetRequestTypedDict",
548
+ "GroupByOptions",
549
+ "GroupByOptionsAsset",
550
+ "GroupByOptionsAssetTypedDict",
551
+ "GroupByOptionsTypedDict",
552
+ "GroupedAssetData",
553
+ "GroupedAssetDataTypedDict",
554
+ "HTTPValidationError",
555
+ "HTTPValidationErrorData",
556
+ "HealthCheckResponse",
557
+ "HealthCheckResponseTypedDict",
558
+ "ImageDescribeSettings",
559
+ "ImageDescribeSettingsJSONOutput",
560
+ "ImageDescribeSettingsJSONOutputTypedDict",
561
+ "ImageDescribeSettingsTypedDict",
562
+ "ImageDetectSettings",
563
+ "ImageDetectSettingsTypedDict",
564
+ "ImageReadSettings",
565
+ "ImageReadSettingsJSONOutput",
566
+ "ImageReadSettingsJSONOutputTypedDict",
567
+ "ImageReadSettingsTypedDict",
568
+ "ImageSettings",
569
+ "ImageSettingsTypedDict",
570
+ "IngestImageURLIngestImagesURLPostRequest",
571
+ "IngestImageURLIngestImagesURLPostRequestTypedDict",
572
+ "IngestTextIngestTextPostRequest",
573
+ "IngestTextIngestTextPostRequestTypedDict",
574
+ "IngestVideoURLIngestVideosURLPostRequest",
575
+ "IngestVideoURLIngestVideosURLPostRequestTypedDict",
576
+ "InputType",
577
+ "IntegerIndexParams",
578
+ "IntegerIndexParamsTypedDict",
579
+ "InteractionResponse",
580
+ "InteractionResponseMetadata",
581
+ "InteractionResponseMetadataTypedDict",
582
+ "InteractionResponseTypedDict",
583
+ "InteractionType",
584
+ "JSONImageOutputSettings",
585
+ "JSONImageOutputSettingsResponseShape",
586
+ "JSONImageOutputSettingsResponseShapeTypedDict",
587
+ "JSONImageOutputSettingsTypedDict",
588
+ "JSONOutput",
589
+ "JSONOutputTypedDict",
590
+ "JSONTextOutputSettings",
591
+ "JSONTextOutputSettingsTypedDict",
592
+ "JSONVideoOutputSettings",
593
+ "JSONVideoOutputSettingsResponseShape",
594
+ "JSONVideoOutputSettingsResponseShapeTypedDict",
595
+ "JSONVideoOutputSettingsTypedDict",
596
+ "KeywordIndexParams",
597
+ "KeywordIndexParamsTypedDict",
598
+ "KillTaskTasksTaskIDDeleteRequest",
599
+ "KillTaskTasksTaskIDDeleteRequestTypedDict",
600
+ "ListAssetsAssetsPostRequest",
601
+ "ListAssetsAssetsPostRequestTypedDict",
602
+ "ListAssetsRequest",
603
+ "ListAssetsRequestTypedDict",
604
+ "ListAssetsResponse",
605
+ "ListAssetsResponseTypedDict",
606
+ "ListCollectionsCollectionsGetRequest",
607
+ "ListCollectionsCollectionsGetRequestTypedDict",
608
+ "ListCollectionsResponse",
609
+ "ListCollectionsResponseTypedDict",
610
+ "ListFeaturesFeaturesPostRequest",
611
+ "ListFeaturesFeaturesPostRequestTypedDict",
612
+ "ListFeaturesRequest",
613
+ "ListFeaturesRequestTypedDict",
614
+ "ListFeaturesResponse",
615
+ "ListFeaturesResponseTypedDict",
616
+ "ListInteractionsFeaturesSearchInteractionsGetRequest",
617
+ "ListInteractionsFeaturesSearchInteractionsGetRequestTypedDict",
618
+ "Loc",
619
+ "LocTypedDict",
620
+ "LogicalOperatorInput",
621
+ "LogicalOperatorInputTypedDict",
622
+ "LogicalOperatorOutput",
623
+ "LogicalOperatorOutputAND",
624
+ "LogicalOperatorOutputANDTypedDict",
625
+ "LogicalOperatorOutputNOR",
626
+ "LogicalOperatorOutputNORTypedDict",
627
+ "LogicalOperatorOutputOR",
628
+ "LogicalOperatorOutputORTypedDict",
629
+ "LogicalOperatorOutputTypedDict",
630
+ "LogoDetectSettings",
631
+ "LogoDetectSettingsTypedDict",
632
+ "Metadata",
633
+ "MetadataTypedDict",
634
+ "Modality",
635
+ "Mode",
636
+ "ModelDetails",
637
+ "ModelDetailsTypedDict",
638
+ "NamespaceResponse",
639
+ "NamespaceResponseTypedDict",
640
+ "Nor",
641
+ "NorTypedDict",
642
+ "Operator",
643
+ "Or",
644
+ "OrTypedDict",
645
+ "OrganizationModel",
646
+ "OrganizationModelMetadata",
647
+ "OrganizationModelMetadataTypedDict",
648
+ "OrganizationModelTypedDict",
649
+ "PartialAssetUpdateAssetsAssetIDPatchRequest",
650
+ "PartialAssetUpdateAssetsAssetIDPatchRequestTypedDict",
651
+ "PayloadIndexConfig",
652
+ "PayloadIndexConfigTypedDict",
653
+ "PayloadIndexType",
654
+ "PayloadIndexTypeTypedDict",
655
+ "PayloadSchemaType",
656
+ "PercolateRequest",
657
+ "PercolateRequestTypedDict",
658
+ "Permission",
659
+ "ProcessImageURLInput",
660
+ "ProcessImageURLInputMetadata",
661
+ "ProcessImageURLInputMetadataTypedDict",
662
+ "ProcessImageURLInputTypedDict",
663
+ "ProcessTextInput",
664
+ "ProcessTextInputMetadata",
665
+ "ProcessTextInputMetadataTypedDict",
666
+ "ProcessTextInputTypedDict",
667
+ "ProcessVideoURLInput",
668
+ "ProcessVideoURLInputMetadata",
669
+ "ProcessVideoURLInputMetadataTypedDict",
670
+ "ProcessVideoURLInputTypedDict",
671
+ "QuerySettings",
672
+ "QuerySettingsTypedDict",
673
+ "RerankingOptions",
674
+ "RerankingOptionsTypedDict",
675
+ "ResponseShape",
676
+ "ResponseShapeTypedDict",
677
+ "SearchAssetsAssetsSearchPostRequest",
678
+ "SearchAssetsAssetsSearchPostRequestTypedDict",
679
+ "SearchAssetsRequest",
680
+ "SearchAssetsRequestTypedDict",
681
+ "SearchFeaturesFeaturesSearchPostRequest",
682
+ "SearchFeaturesFeaturesSearchPostRequestTypedDict",
683
+ "SearchFeaturesFeaturesSearchPostResponseSearchFeaturesFeaturesSearchPost",
684
+ "SearchFeaturesFeaturesSearchPostResponseSearchFeaturesFeaturesSearchPostTypedDict",
685
+ "SearchInteraction",
686
+ "SearchInteractionTypedDict",
687
+ "SearchModelSearchQueryInput",
688
+ "SearchModelSearchQueryInputTypedDict",
689
+ "SearchQueryOutput",
690
+ "SearchQueryOutputType",
691
+ "SearchQueryOutputTypedDict",
692
+ "SearchRequestFeaturesInput",
693
+ "SearchRequestFeaturesInputTypedDict",
694
+ "SearchRequestFeaturesOutput",
695
+ "SearchRequestFeaturesOutputTypedDict",
696
+ "SortOption",
697
+ "SortOptionTypedDict",
698
+ "SparseEmbedding",
699
+ "SparseEmbeddingTypedDict",
700
+ "TaskStatus",
701
+ "TasksModelTaskResponse",
702
+ "TasksModelTaskResponseTypedDict",
703
+ "TextIndexParams",
704
+ "TextIndexParamsTypedDict",
705
+ "TextSettings",
706
+ "TextSettingsTypedDict",
707
+ "TokenizerType",
708
+ "Type",
709
+ "UUIDIndexParams",
710
+ "UUIDIndexParamsTypedDict",
711
+ "UpdateAPIKeyOrganizationsUsersUserEmailAPIKeysKeyNamePatchRequest",
712
+ "UpdateAPIKeyOrganizationsUsersUserEmailAPIKeysKeyNamePatchRequestTypedDict",
713
+ "UpdateAssetRequest",
714
+ "UpdateAssetRequestMetadata",
715
+ "UpdateAssetRequestMetadataTypedDict",
716
+ "UpdateAssetRequestTypedDict",
717
+ "UpdateCollectionCollectionsCollectionPutRequest",
718
+ "UpdateCollectionCollectionsCollectionPutRequestTypedDict",
719
+ "UpdateNamespaceNamespacesNamespacePutRequest",
720
+ "UpdateNamespaceNamespacesNamespacePutRequestTypedDict",
721
+ "UpdateNamespaceRequest",
722
+ "UpdateNamespaceRequestTypedDict",
723
+ "Usage",
724
+ "UsageTypedDict",
725
+ "UserModelInput",
726
+ "UserModelInputMetadata",
727
+ "UserModelInputMetadataTypedDict",
728
+ "UserModelInputTypedDict",
729
+ "UserModelOutput",
730
+ "UserModelOutputMetadata",
731
+ "UserModelOutputMetadataTypedDict",
732
+ "UserModelOutputTypedDict",
733
+ "ValidationError",
734
+ "ValidationErrorTypedDict",
735
+ "VectorModel",
736
+ "VectorType",
737
+ "VideoDescribeSettings",
738
+ "VideoDescribeSettingsJSONOutput",
739
+ "VideoDescribeSettingsJSONOutputTypedDict",
740
+ "VideoDescribeSettingsTypedDict",
741
+ "VideoDetectSettings",
742
+ "VideoDetectSettingsTypedDict",
743
+ "VideoReadSettings",
744
+ "VideoReadSettingsTypedDict",
745
+ "VideoSettings",
746
+ "VideoSettingsTypedDict",
747
+ "VideoTranscriptionSettings",
748
+ "VideoTranscriptionSettingsJSONOutput",
749
+ "VideoTranscriptionSettingsJSONOutputTypedDict",
750
+ "VideoTranscriptionSettingsTypedDict",
751
+ ]