mixpeek 0.21.1__py3-none-any.whl → 0.21.7__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.
- mixpeek/_version.py +2 -2
- mixpeek/{bucket_objects.py → bucketobjects.py} +10 -10
- mixpeek/buckets.py +10 -10
- mixpeek/clusters.py +2 -2
- mixpeek/{collection_cache.py → collectioncache.py} +6 -6
- mixpeek/{collection_documents.py → collectiondocuments.py} +12 -12
- mixpeek/collections.py +4 -4
- mixpeek/features.py +4 -4
- mixpeek/{organization_notifications.py → organizationnotifications.py} +2 -2
- mixpeek/{organizations_usage.py → organizationsusage.py} +2 -2
- mixpeek/research.py +2 -2
- mixpeek/{retriever_interactions.py → retrieverinteractions.py} +8 -8
- mixpeek/retrievers.py +6 -6
- mixpeek/{retriever_stages.py → retrieverstages.py} +2 -2
- mixpeek/sdk.py +7 -7
- mixpeek/taxonomies.py +2 -2
- {mixpeek-0.21.1.dist-info → mixpeek-0.21.7.dist-info}/METADATA +37 -37
- {mixpeek-0.21.1.dist-info → mixpeek-0.21.7.dist-info}/RECORD +19 -19
- {mixpeek-0.21.1.dist-info → mixpeek-0.21.7.dist-info}/WHEEL +0 -0
mixpeek/_version.py
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
import importlib.metadata
|
4
4
|
|
5
5
|
__title__: str = "mixpeek"
|
6
|
-
__version__: str = "0.21.
|
6
|
+
__version__: str = "0.21.7"
|
7
7
|
__openapi_doc_version__: str = "0.81"
|
8
8
|
__gen_version__: str = "2.585.2"
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.21.
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.21.7 2.585.2 0.81 mixpeek"
|
10
10
|
|
11
11
|
try:
|
12
12
|
if __package__ is not None:
|
@@ -9,7 +9,7 @@ from typing import Any, List, Mapping, Optional, Union
|
|
9
9
|
|
10
10
|
|
11
11
|
class BucketObjects(BaseSDK):
|
12
|
-
def
|
12
|
+
def create(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
bucket_identifier: str,
|
@@ -158,7 +158,7 @@ class BucketObjects(BaseSDK):
|
|
158
158
|
http_res,
|
159
159
|
)
|
160
160
|
|
161
|
-
async def
|
161
|
+
async def create_async(
|
162
162
|
self,
|
163
163
|
*,
|
164
164
|
bucket_identifier: str,
|
@@ -307,7 +307,7 @@ class BucketObjects(BaseSDK):
|
|
307
307
|
http_res,
|
308
308
|
)
|
309
309
|
|
310
|
-
def
|
310
|
+
def get(
|
311
311
|
self,
|
312
312
|
*,
|
313
313
|
bucket_identifier: str,
|
@@ -426,7 +426,7 @@ class BucketObjects(BaseSDK):
|
|
426
426
|
http_res,
|
427
427
|
)
|
428
428
|
|
429
|
-
async def
|
429
|
+
async def get_async(
|
430
430
|
self,
|
431
431
|
*,
|
432
432
|
bucket_identifier: str,
|
@@ -545,7 +545,7 @@ class BucketObjects(BaseSDK):
|
|
545
545
|
http_res,
|
546
546
|
)
|
547
547
|
|
548
|
-
def
|
548
|
+
def update(
|
549
549
|
self,
|
550
550
|
*,
|
551
551
|
bucket_identifier: str,
|
@@ -697,7 +697,7 @@ class BucketObjects(BaseSDK):
|
|
697
697
|
http_res,
|
698
698
|
)
|
699
699
|
|
700
|
-
async def
|
700
|
+
async def update_async(
|
701
701
|
self,
|
702
702
|
*,
|
703
703
|
bucket_identifier: str,
|
@@ -849,7 +849,7 @@ class BucketObjects(BaseSDK):
|
|
849
849
|
http_res,
|
850
850
|
)
|
851
851
|
|
852
|
-
def
|
852
|
+
def delete(
|
853
853
|
self,
|
854
854
|
*,
|
855
855
|
bucket_identifier: str,
|
@@ -966,7 +966,7 @@ class BucketObjects(BaseSDK):
|
|
966
966
|
http_res,
|
967
967
|
)
|
968
968
|
|
969
|
-
async def
|
969
|
+
async def delete_async(
|
970
970
|
self,
|
971
971
|
*,
|
972
972
|
bucket_identifier: str,
|
@@ -1083,7 +1083,7 @@ class BucketObjects(BaseSDK):
|
|
1083
1083
|
http_res,
|
1084
1084
|
)
|
1085
1085
|
|
1086
|
-
def
|
1086
|
+
def list(
|
1087
1087
|
self,
|
1088
1088
|
*,
|
1089
1089
|
bucket_identifier: str,
|
@@ -1229,7 +1229,7 @@ class BucketObjects(BaseSDK):
|
|
1229
1229
|
http_res,
|
1230
1230
|
)
|
1231
1231
|
|
1232
|
-
async def
|
1232
|
+
async def list_async(
|
1233
1233
|
self,
|
1234
1234
|
*,
|
1235
1235
|
bucket_identifier: str,
|
mixpeek/buckets.py
CHANGED
@@ -9,7 +9,7 @@ from typing import Any, Mapping, Optional, Union
|
|
9
9
|
|
10
10
|
|
11
11
|
class Buckets(BaseSDK):
|
12
|
-
def
|
12
|
+
def create(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
bucket_name: str,
|
@@ -154,7 +154,7 @@ class Buckets(BaseSDK):
|
|
154
154
|
http_res,
|
155
155
|
)
|
156
156
|
|
157
|
-
async def
|
157
|
+
async def create_async(
|
158
158
|
self,
|
159
159
|
*,
|
160
160
|
bucket_name: str,
|
@@ -299,7 +299,7 @@ class Buckets(BaseSDK):
|
|
299
299
|
http_res,
|
300
300
|
)
|
301
301
|
|
302
|
-
def
|
302
|
+
def get(
|
303
303
|
self,
|
304
304
|
*,
|
305
305
|
bucket_identifier: str,
|
@@ -413,7 +413,7 @@ class Buckets(BaseSDK):
|
|
413
413
|
http_res,
|
414
414
|
)
|
415
415
|
|
416
|
-
async def
|
416
|
+
async def get_async(
|
417
417
|
self,
|
418
418
|
*,
|
419
419
|
bucket_identifier: str,
|
@@ -527,7 +527,7 @@ class Buckets(BaseSDK):
|
|
527
527
|
http_res,
|
528
528
|
)
|
529
529
|
|
530
|
-
def
|
530
|
+
def update(
|
531
531
|
self,
|
532
532
|
*,
|
533
533
|
bucket_identifier: str,
|
@@ -664,7 +664,7 @@ class Buckets(BaseSDK):
|
|
664
664
|
http_res,
|
665
665
|
)
|
666
666
|
|
667
|
-
async def
|
667
|
+
async def update_async(
|
668
668
|
self,
|
669
669
|
*,
|
670
670
|
bucket_identifier: str,
|
@@ -801,7 +801,7 @@ class Buckets(BaseSDK):
|
|
801
801
|
http_res,
|
802
802
|
)
|
803
803
|
|
804
|
-
def
|
804
|
+
def delete(
|
805
805
|
self,
|
806
806
|
*,
|
807
807
|
bucket_identifier: str,
|
@@ -915,7 +915,7 @@ class Buckets(BaseSDK):
|
|
915
915
|
http_res,
|
916
916
|
)
|
917
917
|
|
918
|
-
async def
|
918
|
+
async def delete_async(
|
919
919
|
self,
|
920
920
|
*,
|
921
921
|
bucket_identifier: str,
|
@@ -1029,7 +1029,7 @@ class Buckets(BaseSDK):
|
|
1029
1029
|
http_res,
|
1030
1030
|
)
|
1031
1031
|
|
1032
|
-
def
|
1032
|
+
def list(
|
1033
1033
|
self,
|
1034
1034
|
*,
|
1035
1035
|
limit: OptionalNullable[int] = UNSET,
|
@@ -1160,7 +1160,7 @@ class Buckets(BaseSDK):
|
|
1160
1160
|
http_res,
|
1161
1161
|
)
|
1162
1162
|
|
1163
|
-
async def
|
1163
|
+
async def list_async(
|
1164
1164
|
self,
|
1165
1165
|
*,
|
1166
1166
|
limit: OptionalNullable[int] = UNSET,
|
mixpeek/clusters.py
CHANGED
@@ -9,7 +9,7 @@ from typing import Any, Mapping, Optional, Union
|
|
9
9
|
|
10
10
|
|
11
11
|
class Clusters(BaseSDK):
|
12
|
-
def
|
12
|
+
def create(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
collection_id: str,
|
@@ -157,7 +157,7 @@ class Clusters(BaseSDK):
|
|
157
157
|
http_res,
|
158
158
|
)
|
159
159
|
|
160
|
-
async def
|
160
|
+
async def create_async(
|
161
161
|
self,
|
162
162
|
*,
|
163
163
|
collection_id: str,
|
@@ -9,7 +9,7 @@ from typing import Any, Dict, List, Mapping, Optional
|
|
9
9
|
|
10
10
|
|
11
11
|
class CollectionCache(BaseSDK):
|
12
|
-
def
|
12
|
+
def invalidate(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
collection_id: str,
|
@@ -158,7 +158,7 @@ class CollectionCache(BaseSDK):
|
|
158
158
|
http_res,
|
159
159
|
)
|
160
160
|
|
161
|
-
async def
|
161
|
+
async def invalidate_async(
|
162
162
|
self,
|
163
163
|
*,
|
164
164
|
collection_id: str,
|
@@ -307,7 +307,7 @@ class CollectionCache(BaseSDK):
|
|
307
307
|
http_res,
|
308
308
|
)
|
309
309
|
|
310
|
-
def
|
310
|
+
def get_stats(
|
311
311
|
self,
|
312
312
|
*,
|
313
313
|
internal_id: str,
|
@@ -433,7 +433,7 @@ class CollectionCache(BaseSDK):
|
|
433
433
|
http_res,
|
434
434
|
)
|
435
435
|
|
436
|
-
async def
|
436
|
+
async def get_stats_async(
|
437
437
|
self,
|
438
438
|
*,
|
439
439
|
internal_id: str,
|
@@ -559,7 +559,7 @@ class CollectionCache(BaseSDK):
|
|
559
559
|
http_res,
|
560
560
|
)
|
561
561
|
|
562
|
-
def
|
562
|
+
def cleanup(
|
563
563
|
self,
|
564
564
|
*,
|
565
565
|
internal_id: str,
|
@@ -689,7 +689,7 @@ class CollectionCache(BaseSDK):
|
|
689
689
|
http_res,
|
690
690
|
)
|
691
691
|
|
692
|
-
async def
|
692
|
+
async def cleanup_async(
|
693
693
|
self,
|
694
694
|
*,
|
695
695
|
internal_id: str,
|
@@ -9,7 +9,7 @@ from typing import Any, Dict, List, Mapping, Optional, Union
|
|
9
9
|
|
10
10
|
|
11
11
|
class CollectionDocuments(BaseSDK):
|
12
|
-
def
|
12
|
+
def get(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
collection_identifier: str,
|
@@ -130,7 +130,7 @@ class CollectionDocuments(BaseSDK):
|
|
130
130
|
http_res,
|
131
131
|
)
|
132
132
|
|
133
|
-
async def
|
133
|
+
async def get_async(
|
134
134
|
self,
|
135
135
|
*,
|
136
136
|
collection_identifier: str,
|
@@ -251,7 +251,7 @@ class CollectionDocuments(BaseSDK):
|
|
251
251
|
http_res,
|
252
252
|
)
|
253
253
|
|
254
|
-
def
|
254
|
+
def update(
|
255
255
|
self,
|
256
256
|
*,
|
257
257
|
collection_identifier: str,
|
@@ -391,7 +391,7 @@ class CollectionDocuments(BaseSDK):
|
|
391
391
|
http_res,
|
392
392
|
)
|
393
393
|
|
394
|
-
async def
|
394
|
+
async def update_async(
|
395
395
|
self,
|
396
396
|
*,
|
397
397
|
collection_identifier: str,
|
@@ -531,7 +531,7 @@ class CollectionDocuments(BaseSDK):
|
|
531
531
|
http_res,
|
532
532
|
)
|
533
533
|
|
534
|
-
def
|
534
|
+
def delete(
|
535
535
|
self,
|
536
536
|
*,
|
537
537
|
collection_identifier: str,
|
@@ -652,7 +652,7 @@ class CollectionDocuments(BaseSDK):
|
|
652
652
|
http_res,
|
653
653
|
)
|
654
654
|
|
655
|
-
async def
|
655
|
+
async def delete_async(
|
656
656
|
self,
|
657
657
|
*,
|
658
658
|
collection_identifier: str,
|
@@ -773,7 +773,7 @@ class CollectionDocuments(BaseSDK):
|
|
773
773
|
http_res,
|
774
774
|
)
|
775
775
|
|
776
|
-
def
|
776
|
+
def list(
|
777
777
|
self,
|
778
778
|
*,
|
779
779
|
collection_identifier: str,
|
@@ -908,7 +908,7 @@ class CollectionDocuments(BaseSDK):
|
|
908
908
|
http_res,
|
909
909
|
)
|
910
910
|
|
911
|
-
async def
|
911
|
+
async def list_async(
|
912
912
|
self,
|
913
913
|
*,
|
914
914
|
collection_identifier: str,
|
@@ -1043,7 +1043,7 @@ class CollectionDocuments(BaseSDK):
|
|
1043
1043
|
http_res,
|
1044
1044
|
)
|
1045
1045
|
|
1046
|
-
def
|
1046
|
+
def batch_update(
|
1047
1047
|
self,
|
1048
1048
|
*,
|
1049
1049
|
collection_identifier: str,
|
@@ -1179,7 +1179,7 @@ class CollectionDocuments(BaseSDK):
|
|
1179
1179
|
http_res,
|
1180
1180
|
)
|
1181
1181
|
|
1182
|
-
async def
|
1182
|
+
async def batch_update_async(
|
1183
1183
|
self,
|
1184
1184
|
*,
|
1185
1185
|
collection_identifier: str,
|
@@ -1315,7 +1315,7 @@ class CollectionDocuments(BaseSDK):
|
|
1315
1315
|
http_res,
|
1316
1316
|
)
|
1317
1317
|
|
1318
|
-
def
|
1318
|
+
def batch_delete(
|
1319
1319
|
self,
|
1320
1320
|
*,
|
1321
1321
|
collection_identifier: str,
|
@@ -1439,7 +1439,7 @@ class CollectionDocuments(BaseSDK):
|
|
1439
1439
|
http_res,
|
1440
1440
|
)
|
1441
1441
|
|
1442
|
-
async def
|
1442
|
+
async def batch_delete_async(
|
1443
1443
|
self,
|
1444
1444
|
*,
|
1445
1445
|
collection_identifier: str,
|
mixpeek/collections.py
CHANGED
@@ -9,7 +9,7 @@ from typing import Any, List, Mapping, Optional, Union
|
|
9
9
|
|
10
10
|
|
11
11
|
class Collections(BaseSDK):
|
12
|
-
def
|
12
|
+
def create(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
collection_name: str,
|
@@ -187,7 +187,7 @@ class Collections(BaseSDK):
|
|
187
187
|
http_res,
|
188
188
|
)
|
189
189
|
|
190
|
-
async def
|
190
|
+
async def create_async(
|
191
191
|
self,
|
192
192
|
*,
|
193
193
|
collection_name: str,
|
@@ -365,7 +365,7 @@ class Collections(BaseSDK):
|
|
365
365
|
http_res,
|
366
366
|
)
|
367
367
|
|
368
|
-
def
|
368
|
+
def get(
|
369
369
|
self,
|
370
370
|
*,
|
371
371
|
collection_id: str,
|
@@ -477,7 +477,7 @@ class Collections(BaseSDK):
|
|
477
477
|
http_res,
|
478
478
|
)
|
479
479
|
|
480
|
-
async def
|
480
|
+
async def get_async(
|
481
481
|
self,
|
482
482
|
*,
|
483
483
|
collection_id: str,
|
mixpeek/features.py
CHANGED
@@ -9,7 +9,7 @@ from typing import Any, List, Mapping, Optional
|
|
9
9
|
|
10
10
|
|
11
11
|
class Features(BaseSDK):
|
12
|
-
def
|
12
|
+
def list_extractors(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
@@ -115,7 +115,7 @@ class Features(BaseSDK):
|
|
115
115
|
http_res,
|
116
116
|
)
|
117
117
|
|
118
|
-
async def
|
118
|
+
async def list_extractors_async(
|
119
119
|
self,
|
120
120
|
*,
|
121
121
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
@@ -221,7 +221,7 @@ class Features(BaseSDK):
|
|
221
221
|
http_res,
|
222
222
|
)
|
223
223
|
|
224
|
-
def
|
224
|
+
def get_extractor(
|
225
225
|
self,
|
226
226
|
*,
|
227
227
|
feature_id: str,
|
@@ -334,7 +334,7 @@ class Features(BaseSDK):
|
|
334
334
|
http_res,
|
335
335
|
)
|
336
336
|
|
337
|
-
async def
|
337
|
+
async def get_extractor_async(
|
338
338
|
self,
|
339
339
|
*,
|
340
340
|
feature_id: str,
|
@@ -9,7 +9,7 @@ from typing import Any, Mapping, Optional
|
|
9
9
|
|
10
10
|
|
11
11
|
class OrganizationNotifications(BaseSDK):
|
12
|
-
def
|
12
|
+
def send(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
@@ -111,7 +111,7 @@ class OrganizationNotifications(BaseSDK):
|
|
111
111
|
http_res,
|
112
112
|
)
|
113
113
|
|
114
|
-
async def
|
114
|
+
async def send_async(
|
115
115
|
self,
|
116
116
|
*,
|
117
117
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
@@ -9,7 +9,7 @@ from typing import Any, Mapping, Optional, Union, cast
|
|
9
9
|
|
10
10
|
|
11
11
|
class OrganizationsUsage(BaseSDK):
|
12
|
-
def
|
12
|
+
def get(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
request: Union[
|
@@ -123,7 +123,7 @@ class OrganizationsUsage(BaseSDK):
|
|
123
123
|
http_res,
|
124
124
|
)
|
125
125
|
|
126
|
-
async def
|
126
|
+
async def get_async(
|
127
127
|
self,
|
128
128
|
*,
|
129
129
|
request: Union[
|
mixpeek/research.py
CHANGED
@@ -9,7 +9,7 @@ from typing import Any, Mapping, Optional
|
|
9
9
|
|
10
10
|
|
11
11
|
class Research(BaseSDK):
|
12
|
-
def
|
12
|
+
def get(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
x_namespace: OptionalNullable[str] = UNSET,
|
@@ -118,7 +118,7 @@ class Research(BaseSDK):
|
|
118
118
|
http_res,
|
119
119
|
)
|
120
120
|
|
121
|
-
async def
|
121
|
+
async def get_async(
|
122
122
|
self,
|
123
123
|
*,
|
124
124
|
x_namespace: OptionalNullable[str] = UNSET,
|
@@ -9,7 +9,7 @@ from typing import Any, List, Mapping, Optional, Union
|
|
9
9
|
|
10
10
|
|
11
11
|
class RetrieverInteractions(BaseSDK):
|
12
|
-
def
|
12
|
+
def create(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
feature_id: str,
|
@@ -157,7 +157,7 @@ class RetrieverInteractions(BaseSDK):
|
|
157
157
|
http_res,
|
158
158
|
)
|
159
159
|
|
160
|
-
async def
|
160
|
+
async def create_async(
|
161
161
|
self,
|
162
162
|
*,
|
163
163
|
feature_id: str,
|
@@ -305,7 +305,7 @@ class RetrieverInteractions(BaseSDK):
|
|
305
305
|
http_res,
|
306
306
|
)
|
307
307
|
|
308
|
-
def
|
308
|
+
def list(
|
309
309
|
self,
|
310
310
|
*,
|
311
311
|
feature_id: OptionalNullable[str] = UNSET,
|
@@ -434,7 +434,7 @@ class RetrieverInteractions(BaseSDK):
|
|
434
434
|
http_res,
|
435
435
|
)
|
436
436
|
|
437
|
-
async def
|
437
|
+
async def list_async(
|
438
438
|
self,
|
439
439
|
*,
|
440
440
|
feature_id: OptionalNullable[str] = UNSET,
|
@@ -563,7 +563,7 @@ class RetrieverInteractions(BaseSDK):
|
|
563
563
|
http_res,
|
564
564
|
)
|
565
565
|
|
566
|
-
def
|
566
|
+
def get(
|
567
567
|
self,
|
568
568
|
*,
|
569
569
|
interaction_id: str,
|
@@ -680,7 +680,7 @@ class RetrieverInteractions(BaseSDK):
|
|
680
680
|
http_res,
|
681
681
|
)
|
682
682
|
|
683
|
-
async def
|
683
|
+
async def get_async(
|
684
684
|
self,
|
685
685
|
*,
|
686
686
|
interaction_id: str,
|
@@ -797,7 +797,7 @@ class RetrieverInteractions(BaseSDK):
|
|
797
797
|
http_res,
|
798
798
|
)
|
799
799
|
|
800
|
-
def
|
800
|
+
def delete(
|
801
801
|
self,
|
802
802
|
*,
|
803
803
|
interaction_id: str,
|
@@ -916,7 +916,7 @@ class RetrieverInteractions(BaseSDK):
|
|
916
916
|
http_res,
|
917
917
|
)
|
918
918
|
|
919
|
-
async def
|
919
|
+
async def delete_async(
|
920
920
|
self,
|
921
921
|
*,
|
922
922
|
interaction_id: str,
|
mixpeek/retrievers.py
CHANGED
@@ -9,7 +9,7 @@ from typing import Any, List, Mapping, Optional, Union
|
|
9
9
|
|
10
10
|
|
11
11
|
class Retrievers(BaseSDK):
|
12
|
-
def
|
12
|
+
def create(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
retriever_name: str,
|
@@ -165,7 +165,7 @@ class Retrievers(BaseSDK):
|
|
165
165
|
http_res,
|
166
166
|
)
|
167
167
|
|
168
|
-
async def
|
168
|
+
async def create_async(
|
169
169
|
self,
|
170
170
|
*,
|
171
171
|
retriever_name: str,
|
@@ -321,7 +321,7 @@ class Retrievers(BaseSDK):
|
|
321
321
|
http_res,
|
322
322
|
)
|
323
323
|
|
324
|
-
def
|
324
|
+
def get(
|
325
325
|
self,
|
326
326
|
*,
|
327
327
|
retriever_id: str,
|
@@ -433,7 +433,7 @@ class Retrievers(BaseSDK):
|
|
433
433
|
http_res,
|
434
434
|
)
|
435
435
|
|
436
|
-
async def
|
436
|
+
async def get_async(
|
437
437
|
self,
|
438
438
|
*,
|
439
439
|
retriever_id: str,
|
@@ -545,7 +545,7 @@ class Retrievers(BaseSDK):
|
|
545
545
|
http_res,
|
546
546
|
)
|
547
547
|
|
548
|
-
def
|
548
|
+
def execute(
|
549
549
|
self,
|
550
550
|
*,
|
551
551
|
retriever_id: str,
|
@@ -705,7 +705,7 @@ class Retrievers(BaseSDK):
|
|
705
705
|
http_res,
|
706
706
|
)
|
707
707
|
|
708
|
-
async def
|
708
|
+
async def execute_async(
|
709
709
|
self,
|
710
710
|
*,
|
711
711
|
retriever_id: str,
|
@@ -9,7 +9,7 @@ from typing import Any, List, Mapping, Optional
|
|
9
9
|
|
10
10
|
|
11
11
|
class RetrieverStages(BaseSDK):
|
12
|
-
def
|
12
|
+
def list(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
x_namespace: OptionalNullable[str] = UNSET,
|
@@ -120,7 +120,7 @@ class RetrieverStages(BaseSDK):
|
|
120
120
|
http_res,
|
121
121
|
)
|
122
122
|
|
123
|
-
async def
|
123
|
+
async def list_async(
|
124
124
|
self,
|
125
125
|
*,
|
126
126
|
x_namespace: OptionalNullable[str] = UNSET,
|
mixpeek/sdk.py
CHANGED
@@ -8,23 +8,23 @@ from .utils.retries import RetryConfig
|
|
8
8
|
import httpx
|
9
9
|
from mixpeek import models, utils
|
10
10
|
from mixpeek._hooks import SDKHooks
|
11
|
-
from mixpeek.
|
11
|
+
from mixpeek.bucketobjects import BucketObjects
|
12
12
|
from mixpeek.buckets import Buckets
|
13
13
|
from mixpeek.clusters import Clusters
|
14
|
-
from mixpeek.
|
15
|
-
from mixpeek.
|
14
|
+
from mixpeek.collectioncache import CollectionCache
|
15
|
+
from mixpeek.collectiondocuments import CollectionDocuments
|
16
16
|
from mixpeek.collections import Collections
|
17
17
|
from mixpeek.features import Features
|
18
18
|
from mixpeek.health import Health
|
19
19
|
from mixpeek.models import internal
|
20
20
|
from mixpeek.namespaces import Namespaces
|
21
|
-
from mixpeek.
|
21
|
+
from mixpeek.organizationnotifications import OrganizationNotifications
|
22
22
|
from mixpeek.organizations import Organizations
|
23
|
-
from mixpeek.
|
23
|
+
from mixpeek.organizationsusage import OrganizationsUsage
|
24
24
|
from mixpeek.research import Research
|
25
|
-
from mixpeek.
|
26
|
-
from mixpeek.retriever_stages import RetrieverStages
|
25
|
+
from mixpeek.retrieverinteractions import RetrieverInteractions
|
27
26
|
from mixpeek.retrievers import Retrievers
|
27
|
+
from mixpeek.retrieverstages import RetrieverStages
|
28
28
|
from mixpeek.tasks import Tasks
|
29
29
|
from mixpeek.taxonomies import Taxonomies
|
30
30
|
from mixpeek.types import OptionalNullable, UNSET
|
mixpeek/taxonomies.py
CHANGED
@@ -9,7 +9,7 @@ from typing import Any, Mapping, Optional, Union
|
|
9
9
|
|
10
10
|
|
11
11
|
class Taxonomies(BaseSDK):
|
12
|
-
def
|
12
|
+
def create(
|
13
13
|
self,
|
14
14
|
*,
|
15
15
|
taxonomy_name: str,
|
@@ -139,7 +139,7 @@ class Taxonomies(BaseSDK):
|
|
139
139
|
http_res,
|
140
140
|
)
|
141
141
|
|
142
|
-
async def
|
142
|
+
async def create_async(
|
143
143
|
self,
|
144
144
|
*,
|
145
145
|
taxonomy_name: str,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: mixpeek
|
3
|
-
Version: 0.21.
|
3
|
+
Version: 0.21.7
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
5
5
|
Author: Speakeasy
|
6
6
|
Requires-Python: >=3.9
|
@@ -199,48 +199,48 @@ with Mixpeek(
|
|
199
199
|
|
200
200
|
### [bucket_objects](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md)
|
201
201
|
|
202
|
-
* [
|
203
|
-
* [
|
204
|
-
* [
|
205
|
-
* [
|
206
|
-
* [
|
202
|
+
* [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#create) - Create Object
|
203
|
+
* [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#get) - Get Object
|
204
|
+
* [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#update) - Update Object
|
205
|
+
* [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#delete) - Delete Object
|
206
|
+
* [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/bucketobjects/README.md#list) - List Objects
|
207
207
|
|
208
208
|
### [buckets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md)
|
209
209
|
|
210
|
-
* [
|
211
|
-
* [
|
212
|
-
* [
|
213
|
-
* [
|
214
|
-
* [
|
210
|
+
* [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#create) - Create Bucket
|
211
|
+
* [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#get) - Get Bucket
|
212
|
+
* [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#update) - Update Bucket
|
213
|
+
* [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#delete) - Delete Bucket
|
214
|
+
* [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/buckets/README.md#list) - List Buckets
|
215
215
|
|
216
216
|
### [clusters](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/clusters/README.md)
|
217
217
|
|
218
|
-
* [
|
218
|
+
* [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/clusters/README.md#create) - Create Cluster
|
219
219
|
|
220
220
|
### [collection_cache](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md)
|
221
221
|
|
222
|
-
* [
|
223
|
-
* [
|
224
|
-
* [
|
222
|
+
* [invalidate](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md#invalidate) - Invalidate Cache
|
223
|
+
* [get_stats](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md#get_stats) - Get Cache Stats
|
224
|
+
* [cleanup](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md#cleanup) - Cleanup Cache
|
225
225
|
|
226
226
|
### [collection_documents](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md)
|
227
227
|
|
228
|
-
* [
|
229
|
-
* [
|
230
|
-
* [
|
231
|
-
* [
|
232
|
-
* [
|
233
|
-
* [
|
228
|
+
* [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#get) - Get Document
|
229
|
+
* [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#update) - Update Document
|
230
|
+
* [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#delete) - Delete Document
|
231
|
+
* [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#list) - List Documents
|
232
|
+
* [batch_update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#batch_update) - Batch Update Documents
|
233
|
+
* [batch_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#batch_delete) - Batch Delete Documents
|
234
234
|
|
235
235
|
### [collections](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md)
|
236
236
|
|
237
|
-
* [
|
238
|
-
* [
|
237
|
+
* [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#create) - Create Collection
|
238
|
+
* [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#get) - Get Collection
|
239
239
|
|
240
240
|
### [features](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md)
|
241
241
|
|
242
|
-
* [
|
243
|
-
* [
|
242
|
+
* [list_extractors](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#list_extractors) - List Feature Extractors
|
243
|
+
* [get_extractor](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#get_extractor) - Get Feature Extractor Details
|
244
244
|
|
245
245
|
### [health](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/health/README.md)
|
246
246
|
|
@@ -257,7 +257,7 @@ with Mixpeek(
|
|
257
257
|
|
258
258
|
### [organization_notifications](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizationnotifications/README.md)
|
259
259
|
|
260
|
-
* [
|
260
|
+
* [send](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizationnotifications/README.md#send) - Send Notification
|
261
261
|
|
262
262
|
### [organizations](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md)
|
263
263
|
|
@@ -268,28 +268,28 @@ with Mixpeek(
|
|
268
268
|
|
269
269
|
### [organizations_usage](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizationsusage/README.md)
|
270
270
|
|
271
|
-
* [
|
271
|
+
* [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizationsusage/README.md#get) - Get Usage
|
272
272
|
|
273
273
|
### [research](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/research/README.md)
|
274
274
|
|
275
|
-
* [
|
275
|
+
* [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/research/README.md#get) - Get Research
|
276
276
|
|
277
277
|
### [retriever_interactions](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md)
|
278
278
|
|
279
|
-
* [
|
280
|
-
* [
|
281
|
-
* [
|
282
|
-
* [
|
279
|
+
* [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md#create) - Create Interaction
|
280
|
+
* [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md#list) - List Interactions
|
281
|
+
* [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md#get) - Get Interaction
|
282
|
+
* [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverinteractions/README.md#delete) - Delete Interaction
|
283
283
|
|
284
284
|
### [retriever_stages](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverstages/README.md)
|
285
285
|
|
286
|
-
* [
|
286
|
+
* [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrieverstages/README.md#list) - List Retriever Stages
|
287
287
|
|
288
288
|
### [retrievers](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrievers/README.md)
|
289
289
|
|
290
|
-
* [
|
291
|
-
* [
|
292
|
-
* [
|
290
|
+
* [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrievers/README.md#create) - Create Retriever
|
291
|
+
* [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrievers/README.md#get) - Get Retriever
|
292
|
+
* [execute](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/retrievers/README.md#execute) - Execute Retriever
|
293
293
|
|
294
294
|
### [tasks](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md)
|
295
295
|
|
@@ -299,7 +299,7 @@ with Mixpeek(
|
|
299
299
|
|
300
300
|
### [taxonomies](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomies/README.md)
|
301
301
|
|
302
|
-
* [
|
302
|
+
* [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/taxonomies/README.md#create) - Create Taxonomy
|
303
303
|
|
304
304
|
### [users](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/users/README.md)
|
305
305
|
|
@@ -3,15 +3,15 @@ mixpeek/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,11
|
|
3
3
|
mixpeek/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
4
4
|
mixpeek/_hooks/sdkhooks.py,sha256=T0xbVPw8mvvFszHZlrZdtFrJBovAqE-JQfw4dS9Xi7Y,2495
|
5
5
|
mixpeek/_hooks/types.py,sha256=YEJVwBkHXS0VhTpa_xr7IZdJM5DdEi7QKq_LDv-6A2o,2810
|
6
|
-
mixpeek/_version.py,sha256=
|
6
|
+
mixpeek/_version.py,sha256=I2EAJugqDlb3Bp1Z3LCTdFaqpQfPxNC6dYK8YQuJg_A,456
|
7
7
|
mixpeek/basesdk.py,sha256=qpFsPjn-FwedQiTfOScgF2VCWHRSPkd4TFH6GSlV4ww,12168
|
8
|
-
mixpeek/
|
9
|
-
mixpeek/buckets.py,sha256=
|
10
|
-
mixpeek/clusters.py,sha256=
|
11
|
-
mixpeek/
|
12
|
-
mixpeek/
|
13
|
-
mixpeek/collections.py,sha256=
|
14
|
-
mixpeek/features.py,sha256=
|
8
|
+
mixpeek/bucketobjects.py,sha256=U2lM2WG5NkzTbAN4DjFdy7HaNCrE-DhGVDF6RXgiOU0,59673
|
9
|
+
mixpeek/buckets.py,sha256=PuO332Gf4DSG2Dvk-Jj8nRLSyRrAk0D7uARB1dYMOZA,54249
|
10
|
+
mixpeek/clusters.py,sha256=dcQV0T7HoI9TXrrNz3z4oOhMbXN1xyxqUX0AkdiIjvI,12970
|
11
|
+
mixpeek/collectioncache.py,sha256=lgYUgbPDfr3gOt8_2KK_UBmHDafYfWFIXZjhycouj5Q,33340
|
12
|
+
mixpeek/collectiondocuments.py,sha256=eF74jOTBHwHi7Pj2s3IQJnashPa6MJarrXdhJ_zkghA,65549
|
13
|
+
mixpeek/collections.py,sha256=d0Z6iEXHBy4ntLM02L0rG_ue5ZqF2Gsrwm3NQWPwgM4,25875
|
14
|
+
mixpeek/features.py,sha256=1m4tGITxqwHyLztwBhbVYDQPvbroYf6x0fR4TTMbJVM,18275
|
15
15
|
mixpeek/health.py,sha256=7QjiR-IESq2mrYrx9x0sa1de3530cUDc7gUdWsc-Q6s,6976
|
16
16
|
mixpeek/httpclient.py,sha256=lC-YQ7q4yiJGKElxBeb3aZnr-4aYxjgEpZ6roeXYlyg,4318
|
17
17
|
mixpeek/models/__init__.py,sha256=zXu_Ia3b29bGNXNksO8O0asLE4RMwGYSNI2n_sZ6MCg,34880
|
@@ -181,18 +181,18 @@ mixpeek/models/vectorindex.py,sha256=58ceqzuKIxGQwDgNySOmPY19jSjnQ-Jvqq5TzKhfS14
|
|
181
181
|
mixpeek/models/vectorindexdefinition.py,sha256=8cGTnvbloSpomuLQQZAu2Xb05wJTvzcptAyzOaWYHCE,1043
|
182
182
|
mixpeek/models/vectortype.py,sha256=Cr1SKExLzcxySc_c0WJr2yTAKVW6k5h6HpJ6rmldheg,260
|
183
183
|
mixpeek/namespaces.py,sha256=qZtawL3D6tQKfZiFqRBTyWJRGOdESmWYTqQQNzuAaUk,49112
|
184
|
-
mixpeek/
|
184
|
+
mixpeek/organizationnotifications.py,sha256=vyJeacPF8k3aQsdlqrccwGYB8kOsy52KmLo9-Q7hTXw,8790
|
185
185
|
mixpeek/organizations.py,sha256=mShON0e1CPPtbGYI5MCQisDwOf0cvmJvgRe5n4WOZZE,39175
|
186
|
-
mixpeek/
|
186
|
+
mixpeek/organizationsusage.py,sha256=oWWmjmIgAg_WWLxGG4HJVw70mVAqHfa5nXxBKAFAkJ0,9897
|
187
187
|
mixpeek/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
188
|
-
mixpeek/research.py,sha256=
|
189
|
-
mixpeek/
|
190
|
-
mixpeek/
|
191
|
-
mixpeek/
|
192
|
-
mixpeek/sdk.py,sha256=
|
188
|
+
mixpeek/research.py,sha256=HrwERGPp7dlm9JhOhDUda1VMg_zKVdrm0URFwVhcuTo,9395
|
189
|
+
mixpeek/retrieverinteractions.py,sha256=8LfdqwgqePwgYpqiMEwbsw5e8k7cAH9KdxyZsWu1azY,43297
|
190
|
+
mixpeek/retrievers.py,sha256=1XbXXfu4dIzWZ_QgBalE1PSl--LfXRmCd_WDQv7aw0w,38102
|
191
|
+
mixpeek/retrieverstages.py,sha256=IDqFLxDwlDdDoUTcE54Gn7LRjof2ZjKZc0E1hbg_A-w,9736
|
192
|
+
mixpeek/sdk.py,sha256=LjHvqzctjhQ39-u7bpJJU2lznNFmxyEBnxU7nehsl9Y,8128
|
193
193
|
mixpeek/sdkconfiguration.py,sha256=edo_sMUCQonuwfrmTs-hmOM3oO4-e6f2r_2__q4IMDM,1787
|
194
194
|
mixpeek/tasks.py,sha256=h42XMf_kTU4Ka455GWFBQwo-L-YLM9BVfPu1GxO55jo,29222
|
195
|
-
mixpeek/taxonomies.py,sha256=
|
195
|
+
mixpeek/taxonomies.py,sha256=lJ-C_5X0wQW4blqwpD-g6G2z3S7JiVevgTuVyEJOYOw,11194
|
196
196
|
mixpeek/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
197
197
|
mixpeek/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
198
198
|
mixpeek/users.py,sha256=0xOVKs8EVYGBn6klp0iFo3Qcd36pnLaUUResKMf5VxM,27254
|
@@ -211,6 +211,6 @@ mixpeek/utils/security.py,sha256=XoK-R2YMyZtVWQte7FoezfGJS-dea9jz4qQ7w5dwNWc,600
|
|
211
211
|
mixpeek/utils/serializers.py,sha256=EGH40Pgp3sSK9uM4PxL7_SYzSHtmo-Uy6QIE5xLVg68,5198
|
212
212
|
mixpeek/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
213
213
|
mixpeek/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
214
|
-
mixpeek-0.21.
|
215
|
-
mixpeek-0.21.
|
216
|
-
mixpeek-0.21.
|
214
|
+
mixpeek-0.21.7.dist-info/METADATA,sha256=mRvdJzRJybqGqpjnqo3LdFALtYks9H_4GxaPqvF2Ayk,23882
|
215
|
+
mixpeek-0.21.7.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
216
|
+
mixpeek-0.21.7.dist-info/RECORD,,
|
File without changes
|