mixpeek 0.20.20__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.
- mixpeek/_version.py +3 -3
- mixpeek/{assets.py → bucket_objects.py} +309 -793
- mixpeek/buckets.py +1292 -0
- mixpeek/clusters.py +306 -0
- mixpeek/collection_cache.py +820 -0
- mixpeek/{taxonomyentities.py → collection_documents.py} +305 -559
- mixpeek/collections.py +122 -996
- mixpeek/features.py +45 -991
- mixpeek/models/__init__.py +625 -570
- mixpeek/models/aggregationtype.py +13 -0
- mixpeek/models/apikeyupdate.py +1 -1
- mixpeek/models/attributebasedconfig.py +21 -0
- mixpeek/models/automaticnaming.py +29 -0
- mixpeek/models/basicfeatureextractor.py +35 -0
- mixpeek/models/{classify_features_v1_entities_taxonomies_taxonomy_classify_postop.py → batch_delete_documents_v1_collections_collection_identifier_documents_batch_deleteop.py} +17 -15
- mixpeek/models/{update_collection_v1_collections_collection_putop.py → batch_update_documents_v1_collections_collection_identifier_documents_batch_putop.py} +29 -19
- mixpeek/models/blobdetails.py +72 -0
- mixpeek/models/blobmodel.py +107 -0
- mixpeek/models/bucketcreaterequest.py +75 -0
- mixpeek/models/bucketresponse.py +90 -0
- mixpeek/models/bucketschema_input.py +37 -0
- mixpeek/models/bucketschema_output.py +37 -0
- mixpeek/models/{featureresponse.py → bucketschemafield_input.py} +45 -18
- mixpeek/models/bucketschemafield_output.py +101 -0
- mixpeek/models/bucketschemafieldtype.py +29 -0
- mixpeek/models/bucketupdaterequest.py +68 -0
- mixpeek/models/cachestats.py +40 -0
- mixpeek/models/{list_collections_v1_collections_getop.py → cleanup_cache_v1_collections_cache_cleanup_postop.py} +23 -12
- mixpeek/models/{inputtype.py → clusteringmethod.py} +3 -5
- mixpeek/models/clustertype.py +9 -0
- mixpeek/models/collectioncacheconfig_input.py +92 -0
- mixpeek/models/collectioncacheconfig_output.py +92 -0
- mixpeek/models/collectionconfig.py +32 -0
- mixpeek/models/collectionmodel.py +79 -8
- mixpeek/models/{create_taxonomy_v1_entities_taxonomies_postop.py → create_bucket_v1_buckets_create_postop.py} +7 -7
- mixpeek/models/{search_assets_v1_assets_search_postop.py → create_cluster_v1_clusters_postop.py} +7 -7
- mixpeek/models/{create_collection_v1_collections_postop.py → create_collection_v1_collections_create_postop.py} +3 -3
- mixpeek/models/{ingest_video_url_v1_ingest_videos_url_postop.py → create_interaction_v1_retrievers_interactions_postop.py} +7 -7
- mixpeek/models/{partial_asset_update_v1_assets_asset_id_patchop.py → create_object_v1_buckets_bucket_identifier_objects_create_postop.py} +11 -9
- mixpeek/models/{ingest_text_v1_ingest_text_postop.py → create_retriever_v1_retrievers_retrievers_postop.py} +10 -7
- mixpeek/models/{ingest_image_url_v1_ingest_images_url_postop.py → create_taxonomy_v1_taxonomies_postop.py} +7 -7
- mixpeek/models/createblobrequest.py +80 -0
- mixpeek/models/createclusterrequest.py +74 -0
- mixpeek/models/createcollectionrequest.py +72 -3
- mixpeek/models/createnamespacerequest.py +14 -8
- mixpeek/models/createobjectrequest.py +75 -0
- mixpeek/models/createretrieverrequest.py +90 -0
- mixpeek/models/{taxonomyupdate.py → createtaxonomyrequest.py} +15 -13
- mixpeek/models/{delete_asset_v1_assets_asset_id_deleteop.py → delete_bucket_v1_buckets_bucket_identifier_deleteop.py} +5 -5
- 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
- mixpeek/models/{get_taxonomy_v1_entities_taxonomies_taxonomy_getop.py → delete_interaction_v1_retrievers_interactions_interaction_id_deleteop.py} +7 -7
- mixpeek/models/delete_object_v1_buckets_bucket_identifier_objects_object_identifier_deleteop.py +70 -0
- mixpeek/models/{featureextractionembeddingrequest.py → documenthandlingconfig.py} +12 -15
- mixpeek/models/documentinputhandling.py +11 -0
- mixpeek/models/{jsontextoutputsettings.py → documentlistresponse.py} +15 -14
- mixpeek/models/documentoutputhandling.py +10 -0
- mixpeek/models/documentoutputtype.py +11 -0
- mixpeek/models/documentresponse.py +87 -0
- mixpeek/models/{nodeupdate.py → documentupdate.py} +22 -13
- mixpeek/models/enrichmentfield.py +25 -0
- mixpeek/models/errordetail.py +1 -1
- mixpeek/models/{update_node_v1_entities_taxonomies_nodes_node_patchop.py → execute_retriever_v1_retrievers_retrievers_retriever_id_execute_postop.py} +11 -11
- mixpeek/models/featureextractorconfig.py +116 -0
- mixpeek/models/featureextractordefinition.py +192 -0
- mixpeek/models/filtercondition.py +25 -25
- mixpeek/models/filteroperator.py +24 -0
- mixpeek/models/generativemodels.py +10 -0
- mixpeek/models/{delete_feature_v1_features_feature_id_deleteop.py → get_bucket_v1_buckets_bucket_identifier_getop.py} +5 -5
- mixpeek/models/{list_taxonomies_v1_entities_taxonomies_getop.py → get_cache_stats_v1_collections_cache_stats_getop.py} +16 -14
- mixpeek/models/get_collection_v1_collections_collection_id_getop.py +59 -0
- mixpeek/models/get_document_v1_collections_collection_identifier_documents_document_id_getop.py +70 -0
- mixpeek/models/get_feature_extractor_v1_features_extractors_feature_id_getop.py +16 -0
- mixpeek/models/get_interaction_v1_retrievers_interactions_interaction_id_getop.py +57 -0
- mixpeek/models/{delete_collection_v1_collections_collection_deleteop.py → get_object_v1_buckets_bucket_identifier_objects_object_identifier_getop.py} +16 -7
- mixpeek/models/get_research_v1_research_getop.py +52 -0
- mixpeek/models/get_retriever_stages_v1_retrievers_stages_getop.py +52 -0
- mixpeek/models/{delete_taxonomy_v1_entities_taxonomies_taxonomy_deleteop.py → get_retriever_v1_retrievers_retrievers_retriever_id_getop.py} +5 -7
- mixpeek/models/get_task_v1_tasks_task_id_getop.py +1 -1
- mixpeek/models/getusagerequestmodel.py +91 -0
- mixpeek/models/hdbscanparameters.py +26 -0
- mixpeek/models/interactionresponse.py +86 -0
- mixpeek/models/interactiontype.py +22 -0
- mixpeek/models/{search_features_v1_features_search_postop.py → invalidate_cache_v1_collections_cache_invalidate_postop.py} +60 -34
- mixpeek/models/invalidationevent.py +67 -0
- mixpeek/models/invalidationstrategy.py +12 -0
- mixpeek/models/kill_task_v1_tasks_task_id_deleteop.py +1 -1
- mixpeek/models/list_active_tasks_v1_tasks_getop.py +1 -1
- mixpeek/models/{list_assets_v1_assets_postop.py → list_buckets_v1_buckets_postop.py} +18 -18
- mixpeek/models/{list_features_v1_features_postop.py → list_documents_v1_collections_collection_identifier_documents_getop.py} +54 -19
- mixpeek/models/list_interactions_v1_retrievers_interactions_getop.py +96 -0
- mixpeek/models/{list_classifications_v1_entities_taxonomies_taxonomy_classifications_postop.py → list_objects_v1_buckets_bucket_identifier_objects_postop.py} +22 -29
- mixpeek/models/{groupbyoptionsasset.py → listbucketsrequest.py} +19 -28
- mixpeek/models/listbucketsresponse.py +23 -0
- mixpeek/models/{groupbyoptions.py → listobjectsrequest.py} +19 -28
- mixpeek/models/listobjectsresponse.py +25 -0
- mixpeek/models/listtasksresponse.py +3 -6
- mixpeek/models/{logicaloperator.py → logicaloperator_input.py} +42 -24
- mixpeek/models/logicaloperator_output.py +121 -0
- mixpeek/models/multivectorindex.py +25 -0
- mixpeek/models/namespaceresponse.py +1 -1
- mixpeek/models/namespaceusage.py +45 -0
- mixpeek/models/namingmethod.py +8 -0
- mixpeek/models/objectresponse.py +124 -0
- mixpeek/models/{db_model_paginationresponse.py → paginationresponse.py} +3 -3
- mixpeek/models/payloadindexconfig.py +1 -1
- mixpeek/models/plan.py +82 -0
- mixpeek/models/recomputestrategy.py +12 -0
- mixpeek/models/resourcetotals.py +39 -0
- mixpeek/models/{jsonvideooutputsettings.py → retrieverbinding.py} +19 -11
- mixpeek/models/{logodetectsettings.py → retrievercacheconfig.py} +20 -11
- mixpeek/models/retrievermodel.py +95 -0
- mixpeek/models/retrieverqueryrequest.py +114 -0
- mixpeek/models/retrieverresponse.py +24 -0
- mixpeek/models/searchinteraction.py +81 -0
- mixpeek/models/singlelineageentry.py +99 -0
- mixpeek/models/sortdirection.py +11 -0
- mixpeek/models/sortoption.py +20 -12
- mixpeek/models/sourceconfig_input.py +72 -0
- mixpeek/models/sourceconfig_output.py +75 -0
- mixpeek/models/sourcetype.py +11 -0
- mixpeek/models/stageconfig_input.py +111 -0
- mixpeek/models/stageconfig_output.py +114 -0
- mixpeek/models/stagedefinition.py +110 -0
- mixpeek/models/{jsonimageoutputsettings.py → stageresponse.py} +21 -11
- mixpeek/models/taskresponse.py +1 -1
- mixpeek/models/taskstatus.py +1 -0
- mixpeek/models/{assetfeatures.py → taxonomyapplicationconfig.py} +23 -15
- mixpeek/models/taxonomyconfig.py +19 -0
- mixpeek/models/timeseriesdatapoint.py +25 -0
- mixpeek/models/timeseriesusage.py +36 -0
- mixpeek/models/{full_asset_update_v1_assets_asset_id_putop.py → update_bucket_v1_buckets_bucket_identifier_putop.py} +9 -9
- mixpeek/models/{update_taxonomy_v1_entities_taxonomies_taxonomy_patchop.py → update_document_v1_collections_collection_identifier_documents_document_id_putop.py} +25 -13
- mixpeek/models/{full_feature_update_v1_features_feature_id_putop.py → update_object_v1_buckets_bucket_identifier_objects_object_identifier_putop.py} +20 -9
- mixpeek/models/updatenamespacerequest.py +1 -1
- mixpeek/models/updateobjectrequest.py +75 -0
- mixpeek/models/usageresponse.py +86 -0
- mixpeek/models/usagesummary.py +39 -0
- mixpeek/models/usagetimerange.py +16 -0
- mixpeek/models/usermodel_input.py +3 -0
- mixpeek/models/usermodel_output.py +3 -0
- mixpeek/models/vectorbasedconfig.py +60 -0
- mixpeek/models/{collectionresult.py → vectorindex.py} +20 -15
- mixpeek/models/vectorindexdefinition.py +43 -0
- mixpeek/models/vectortype.py +4 -1
- mixpeek/namespaces.py +26 -480
- mixpeek/organization_notifications.py +214 -0
- mixpeek/organizations.py +6 -210
- mixpeek/{featureextractors.py → organizations_usage.py} +31 -39
- mixpeek/research.py +228 -0
- mixpeek/retriever_interactions.py +1036 -0
- mixpeek/retriever_stages.py +232 -0
- mixpeek/{ingestassets.py → retrievers.py} +209 -271
- mixpeek/sdk.py +40 -23
- mixpeek/taxonomies.py +43 -513
- mixpeek/types/basemodel.py +3 -3
- mixpeek/utils/enums.py +67 -27
- {mixpeek-0.20.20.dist-info → mixpeek-0.21.1.dist-info}/METADATA +68 -50
- mixpeek-0.21.1.dist-info/RECORD +216 -0
- {mixpeek-0.20.20.dist-info → mixpeek-0.21.1.dist-info}/WHEEL +1 -1
- mixpeek/models/actionusage.py +0 -16
- mixpeek/models/assetresponse.py +0 -166
- mixpeek/models/assets_model_searchquery.py +0 -21
- mixpeek/models/assetupdate.py +0 -28
- mixpeek/models/assignmentconfig.py +0 -67
- mixpeek/models/assignmentmode.py +0 -11
- mixpeek/models/availablemodels.py +0 -16
- mixpeek/models/availablemodelsresponse.py +0 -27
- mixpeek/models/classificationmatch.py +0 -77
- mixpeek/models/classificationwithfeature.py +0 -73
- mixpeek/models/collectiondetailsresponse.py +0 -83
- mixpeek/models/dateusage.py +0 -22
- mixpeek/models/denseembedding.py +0 -16
- mixpeek/models/discoverrequest.py +0 -64
- mixpeek/models/embeddingconfig.py +0 -33
- mixpeek/models/embeddingrequest.py +0 -92
- mixpeek/models/embeddingresponse.py +0 -64
- mixpeek/models/entitysettings.py +0 -50
- mixpeek/models/featureoptions.py +0 -25
- mixpeek/models/features_model_paginationresponse.py +0 -59
- mixpeek/models/featureupdaterequest.py +0 -21
- mixpeek/models/get_asset_v1_assets_asset_id_getop.py +0 -73
- mixpeek/models/get_asset_with_features_v1_assets_asset_id_features_getop.py +0 -73
- mixpeek/models/get_collection_details_v1_collections_collection_details_getop.py +0 -59
- mixpeek/models/get_collection_details_v1_collections_collection_getop.py +0 -59
- mixpeek/models/get_feature_v1_features_feature_id_getop.py +0 -70
- mixpeek/models/get_taxonomy_node_v1_entities_taxonomies_nodes_node_getop.py +0 -59
- mixpeek/models/groupedassetdata.py +0 -18
- mixpeek/models/imagedescribesettings.py +0 -82
- mixpeek/models/imagedetectsettings.py +0 -47
- mixpeek/models/imagereadsettings.py +0 -71
- mixpeek/models/imagesettings.py +0 -92
- mixpeek/models/listassetsrequest.py +0 -75
- mixpeek/models/listassetsresponse.py +0 -22
- mixpeek/models/listclassificationsrequest.py +0 -69
- mixpeek/models/listclassificationsresponse.py +0 -31
- mixpeek/models/listcollectionsresponse.py +0 -22
- mixpeek/models/listfeaturesrequest.py +0 -77
- mixpeek/models/listfeaturesresponse.py +0 -22
- mixpeek/models/listtaxonomiesresponse.py +0 -24
- mixpeek/models/modality.py +0 -13
- mixpeek/models/modeldetails.py +0 -61
- mixpeek/models/nodeoptions.py +0 -16
- mixpeek/models/patch_namespace_v1_namespaces_namespace_patchop.py +0 -28
- mixpeek/models/payloadindextype.py +0 -17
- mixpeek/models/processimageurlinput.py +0 -87
- mixpeek/models/processtextinput.py +0 -82
- mixpeek/models/processvideourlinput.py +0 -87
- mixpeek/models/querysettings.py +0 -56
- mixpeek/models/rerankingoptions.py +0 -47
- mixpeek/models/search_model_searchquery.py +0 -76
- mixpeek/models/searchassetsrequest.py +0 -78
- mixpeek/models/searchrequestfeatures.py +0 -153
- mixpeek/models/sparseembedding.py +0 -21
- mixpeek/models/taxonomycreate.py +0 -20
- mixpeek/models/taxonomyextractionconfig.py +0 -26
- mixpeek/models/taxonomymodel.py +0 -27
- mixpeek/models/taxonomynode.py +0 -101
- mixpeek/models/taxonomynodecreate.py +0 -63
- mixpeek/models/textsettings.py +0 -67
- mixpeek/models/updateassetrequest.py +0 -60
- mixpeek/models/usage.py +0 -18
- mixpeek/models/vectormodel.py +0 -15
- mixpeek/models/videodescribesettings.py +0 -82
- mixpeek/models/videodetectsettings.py +0 -47
- mixpeek/models/videoreadsettings.py +0 -71
- mixpeek/models/videosettings.py +0 -115
- mixpeek/models/videotranscriptionsettings.py +0 -69
- mixpeek-0.20.20.dist-info/RECORD +0 -201
mixpeek/models/__init__.py
CHANGED
@@ -1,70 +1,120 @@
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
2
|
|
3
|
-
from .
|
3
|
+
from .aggregationtype import AggregationType
|
4
4
|
from .apierror import APIError
|
5
5
|
from .apikey import APIKey, APIKeyTypedDict
|
6
6
|
from .apikeyupdate import APIKeyUpdate, APIKeyUpdateTypedDict
|
7
|
-
from .
|
8
|
-
from .
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
7
|
+
from .attributebasedconfig import AttributeBasedConfig, AttributeBasedConfigTypedDict
|
8
|
+
from .automaticnaming import AutomaticNaming, AutomaticNamingTypedDict
|
9
|
+
from .basicfeatureextractor import BasicFeatureExtractor, BasicFeatureExtractorTypedDict
|
10
|
+
from .batch_delete_documents_v1_collections_collection_identifier_documents_batch_deleteop import (
|
11
|
+
BatchDeleteDocumentsV1CollectionsCollectionIdentifierDocumentsBatchDeleteRequest,
|
12
|
+
BatchDeleteDocumentsV1CollectionsCollectionIdentifierDocumentsBatchDeleteRequestTypedDict,
|
13
|
+
)
|
14
|
+
from .batch_update_documents_v1_collections_collection_identifier_documents_batch_putop import (
|
15
|
+
BatchUpdateDocumentsV1CollectionsCollectionIdentifierDocumentsBatchPutRequest,
|
16
|
+
BatchUpdateDocumentsV1CollectionsCollectionIdentifierDocumentsBatchPutRequestTypedDict,
|
17
|
+
RequestBody,
|
18
|
+
RequestBodyTypedDict,
|
19
|
+
)
|
20
|
+
from .blobdetails import BlobDetails, BlobDetailsTypedDict
|
21
|
+
from .blobmodel import (
|
22
|
+
BlobModel,
|
23
|
+
BlobModelMetadata,
|
24
|
+
BlobModelMetadataTypedDict,
|
25
|
+
BlobModelTypedDict,
|
26
|
+
)
|
27
|
+
from .boolindexparams import BoolIndexParams, BoolIndexParamsTypedDict
|
28
|
+
from .bucketcreaterequest import (
|
29
|
+
BucketCreateRequest,
|
30
|
+
BucketCreateRequestMetadata,
|
31
|
+
BucketCreateRequestMetadataTypedDict,
|
32
|
+
BucketCreateRequestTypedDict,
|
33
|
+
)
|
34
|
+
from .bucketresponse import (
|
35
|
+
BucketResponse,
|
36
|
+
BucketResponseMetadata,
|
37
|
+
BucketResponseMetadataTypedDict,
|
38
|
+
BucketResponseTypedDict,
|
39
|
+
)
|
40
|
+
from .bucketschema_input import BucketSchemaInput, BucketSchemaInputTypedDict
|
41
|
+
from .bucketschema_output import BucketSchemaOutput, BucketSchemaOutputTypedDict
|
42
|
+
from .bucketschemafield_input import (
|
43
|
+
BucketSchemaFieldInput,
|
44
|
+
BucketSchemaFieldInputTypedDict,
|
45
|
+
)
|
46
|
+
from .bucketschemafield_output import (
|
47
|
+
BucketSchemaFieldOutput,
|
48
|
+
BucketSchemaFieldOutputTypedDict,
|
49
|
+
)
|
50
|
+
from .bucketschemafieldtype import BucketSchemaFieldType
|
51
|
+
from .bucketupdaterequest import (
|
52
|
+
BucketUpdateRequest,
|
53
|
+
BucketUpdateRequestTypedDict,
|
13
54
|
Metadata,
|
14
55
|
MetadataTypedDict,
|
15
56
|
)
|
16
|
-
from .
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
from .assetupdate import AssetUpdate, AssetUpdateTypedDict, Mode
|
21
|
-
from .assignmentconfig import AssignmentConfig, AssignmentConfigTypedDict
|
22
|
-
from .assignmentmode import AssignmentMode
|
23
|
-
from .availablemodels import AvailableModels
|
24
|
-
from .availablemodelsresponse import (
|
25
|
-
AvailableModelsResponse,
|
26
|
-
AvailableModelsResponseTypedDict,
|
57
|
+
from .cachestats import CacheStats, CacheStatsTypedDict
|
58
|
+
from .cleanup_cache_v1_collections_cache_cleanup_postop import (
|
59
|
+
CleanupCacheV1CollectionsCacheCleanupPostRequest,
|
60
|
+
CleanupCacheV1CollectionsCacheCleanupPostRequestTypedDict,
|
27
61
|
)
|
28
|
-
from .
|
29
|
-
from .
|
30
|
-
from .
|
31
|
-
|
32
|
-
|
33
|
-
)
|
34
|
-
from .classify_features_v1_entities_taxonomies_taxonomy_classify_postop import (
|
35
|
-
ClassifyFeaturesV1EntitiesTaxonomiesTaxonomyClassifyPostRequest,
|
36
|
-
ClassifyFeaturesV1EntitiesTaxonomiesTaxonomyClassifyPostRequestTypedDict,
|
62
|
+
from .clusteringmethod import ClusteringMethod
|
63
|
+
from .clustertype import ClusterType
|
64
|
+
from .collectioncacheconfig_input import (
|
65
|
+
CollectionCacheConfigInput,
|
66
|
+
CollectionCacheConfigInputTypedDict,
|
37
67
|
)
|
38
|
-
from .
|
39
|
-
|
40
|
-
|
41
|
-
CollectionDetailsResponseMetadataTypedDict,
|
42
|
-
CollectionDetailsResponseTypedDict,
|
68
|
+
from .collectioncacheconfig_output import (
|
69
|
+
CollectionCacheConfigOutput,
|
70
|
+
CollectionCacheConfigOutputTypedDict,
|
43
71
|
)
|
72
|
+
from .collectionconfig import CollectionConfig, CollectionConfigTypedDict
|
44
73
|
from .collectionmodel import (
|
45
74
|
CollectionModel,
|
46
75
|
CollectionModelMetadata,
|
47
76
|
CollectionModelMetadataTypedDict,
|
48
77
|
CollectionModelTypedDict,
|
49
78
|
)
|
50
|
-
from .collectionresult import (
|
51
|
-
CollectionResult,
|
52
|
-
CollectionResultMetadata,
|
53
|
-
CollectionResultMetadataTypedDict,
|
54
|
-
CollectionResultTypedDict,
|
55
|
-
)
|
56
79
|
from .create_api_key_v1_organizations_users_user_email_api_keys_postop import (
|
57
80
|
CreateAPIKeyV1OrganizationsUsersUserEmailAPIKeysPostRequest,
|
58
81
|
CreateAPIKeyV1OrganizationsUsersUserEmailAPIKeysPostRequestTypedDict,
|
59
82
|
)
|
60
|
-
from .
|
61
|
-
|
62
|
-
|
83
|
+
from .create_bucket_v1_buckets_create_postop import (
|
84
|
+
CreateBucketV1BucketsCreatePostRequest,
|
85
|
+
CreateBucketV1BucketsCreatePostRequestTypedDict,
|
86
|
+
)
|
87
|
+
from .create_cluster_v1_clusters_postop import (
|
88
|
+
CreateClusterV1ClustersPostRequest,
|
89
|
+
CreateClusterV1ClustersPostRequestTypedDict,
|
90
|
+
)
|
91
|
+
from .create_collection_v1_collections_create_postop import (
|
92
|
+
CreateCollectionV1CollectionsCreatePostRequest,
|
93
|
+
CreateCollectionV1CollectionsCreatePostRequestTypedDict,
|
94
|
+
)
|
95
|
+
from .create_interaction_v1_retrievers_interactions_postop import (
|
96
|
+
CreateInteractionV1RetrieversInteractionsPostRequest,
|
97
|
+
CreateInteractionV1RetrieversInteractionsPostRequestTypedDict,
|
98
|
+
)
|
99
|
+
from .create_object_v1_buckets_bucket_identifier_objects_create_postop import (
|
100
|
+
CreateObjectV1BucketsBucketIdentifierObjectsCreatePostRequest,
|
101
|
+
CreateObjectV1BucketsBucketIdentifierObjectsCreatePostRequestTypedDict,
|
102
|
+
)
|
103
|
+
from .create_retriever_v1_retrievers_retrievers_postop import (
|
104
|
+
CreateRetrieverV1RetrieversRetrieversPostRequest,
|
105
|
+
CreateRetrieverV1RetrieversRetrieversPostRequestTypedDict,
|
63
106
|
)
|
64
|
-
from .
|
65
|
-
|
66
|
-
|
107
|
+
from .create_taxonomy_v1_taxonomies_postop import (
|
108
|
+
CreateTaxonomyV1TaxonomiesPostRequest,
|
109
|
+
CreateTaxonomyV1TaxonomiesPostRequestTypedDict,
|
67
110
|
)
|
111
|
+
from .createblobrequest import (
|
112
|
+
CreateBlobRequest,
|
113
|
+
CreateBlobRequestMetadata,
|
114
|
+
CreateBlobRequestMetadataTypedDict,
|
115
|
+
CreateBlobRequestTypedDict,
|
116
|
+
)
|
117
|
+
from .createclusterrequest import CreateClusterRequest, CreateClusterRequestTypedDict
|
68
118
|
from .createcollectionrequest import (
|
69
119
|
CreateCollectionRequest,
|
70
120
|
CreateCollectionRequestMetadata,
|
@@ -75,183 +125,172 @@ from .createnamespacerequest import (
|
|
75
125
|
CreateNamespaceRequest,
|
76
126
|
CreateNamespaceRequestTypedDict,
|
77
127
|
)
|
78
|
-
from .
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
128
|
+
from .createobjectrequest import (
|
129
|
+
CreateObjectRequest,
|
130
|
+
CreateObjectRequestMetadata,
|
131
|
+
CreateObjectRequestMetadataTypedDict,
|
132
|
+
CreateObjectRequestTypedDict,
|
133
|
+
)
|
134
|
+
from .createretrieverrequest import (
|
135
|
+
CreateRetrieverRequest,
|
136
|
+
CreateRetrieverRequestMetadata,
|
137
|
+
CreateRetrieverRequestMetadataTypedDict,
|
138
|
+
CreateRetrieverRequestTypedDict,
|
83
139
|
)
|
140
|
+
from .createtaxonomyrequest import CreateTaxonomyRequest, CreateTaxonomyRequestTypedDict
|
141
|
+
from .datetimeindexparams import DatetimeIndexParams, DatetimeIndexParamsTypedDict
|
84
142
|
from .delete_api_key_v1_organizations_users_user_email_api_keys_key_name_deleteop import (
|
85
143
|
DeleteAPIKeyV1OrganizationsUsersUserEmailAPIKeysKeyNameDeleteRequest,
|
86
144
|
DeleteAPIKeyV1OrganizationsUsersUserEmailAPIKeysKeyNameDeleteRequestTypedDict,
|
87
145
|
)
|
88
|
-
from .
|
89
|
-
|
90
|
-
|
91
|
-
)
|
92
|
-
from .delete_classifications_v1_entities_taxonomies_taxonomy_classifications_classification_id_deleteop import (
|
93
|
-
DeleteClassificationsV1EntitiesTaxonomiesTaxonomyClassificationsClassificationIDDeleteRequest,
|
94
|
-
DeleteClassificationsV1EntitiesTaxonomiesTaxonomyClassificationsClassificationIDDeleteRequestTypedDict,
|
146
|
+
from .delete_bucket_v1_buckets_bucket_identifier_deleteop import (
|
147
|
+
DeleteBucketV1BucketsBucketIdentifierDeleteRequest,
|
148
|
+
DeleteBucketV1BucketsBucketIdentifierDeleteRequestTypedDict,
|
95
149
|
)
|
96
|
-
from .
|
97
|
-
|
98
|
-
|
150
|
+
from .delete_document_v1_collections_collection_identifier_documents_document_id_deleteop import (
|
151
|
+
DeleteDocumentV1CollectionsCollectionIdentifierDocumentsDocumentIDDeleteRequest,
|
152
|
+
DeleteDocumentV1CollectionsCollectionIdentifierDocumentsDocumentIDDeleteRequestTypedDict,
|
99
153
|
)
|
100
|
-
from .
|
101
|
-
|
102
|
-
|
154
|
+
from .delete_interaction_v1_retrievers_interactions_interaction_id_deleteop import (
|
155
|
+
DeleteInteractionV1RetrieversInteractionsInteractionIDDeleteRequest,
|
156
|
+
DeleteInteractionV1RetrieversInteractionsInteractionIDDeleteRequestTypedDict,
|
103
157
|
)
|
104
158
|
from .delete_namespace_v1_namespaces_namespace_deleteop import (
|
105
159
|
DeleteNamespaceV1NamespacesNamespaceDeleteRequest,
|
106
160
|
DeleteNamespaceV1NamespacesNamespaceDeleteRequestTypedDict,
|
107
161
|
)
|
108
|
-
from .
|
109
|
-
|
110
|
-
|
162
|
+
from .delete_object_v1_buckets_bucket_identifier_objects_object_identifier_deleteop import (
|
163
|
+
DeleteObjectV1BucketsBucketIdentifierObjectsObjectIdentifierDeleteRequest,
|
164
|
+
DeleteObjectV1BucketsBucketIdentifierObjectsObjectIdentifierDeleteRequestTypedDict,
|
111
165
|
)
|
112
166
|
from .delete_user_v1_organizations_users_user_email_deleteop import (
|
113
167
|
DeleteUserV1OrganizationsUsersUserEmailDeleteRequest,
|
114
168
|
DeleteUserV1OrganizationsUsersUserEmailDeleteRequestTypedDict,
|
115
169
|
)
|
116
|
-
from .
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
from .
|
124
|
-
from .
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
)
|
130
|
-
from .
|
170
|
+
from .documenthandlingconfig import (
|
171
|
+
DocumentHandlingConfig,
|
172
|
+
DocumentHandlingConfigTypedDict,
|
173
|
+
)
|
174
|
+
from .documentinputhandling import DocumentInputHandling
|
175
|
+
from .documentlistresponse import DocumentListResponse, DocumentListResponseTypedDict
|
176
|
+
from .documentoutputhandling import DocumentOutputHandling
|
177
|
+
from .documentoutputtype import DocumentOutputType
|
178
|
+
from .documentresponse import (
|
179
|
+
DocumentResponse,
|
180
|
+
DocumentResponseMetadata,
|
181
|
+
DocumentResponseMetadataTypedDict,
|
182
|
+
DocumentResponseTypedDict,
|
183
|
+
)
|
184
|
+
from .documentupdate import (
|
185
|
+
DocumentUpdate,
|
186
|
+
DocumentUpdateMetadata,
|
187
|
+
DocumentUpdateMetadataTypedDict,
|
188
|
+
DocumentUpdateTypedDict,
|
189
|
+
)
|
190
|
+
from .enrichmentfield import EnrichmentField, EnrichmentFieldTypedDict
|
131
191
|
from .errordetail import Details, DetailsTypedDict, ErrorDetail, ErrorDetailTypedDict
|
132
192
|
from .errorresponse import ErrorResponse, ErrorResponseData
|
133
|
-
from .
|
134
|
-
|
135
|
-
|
136
|
-
)
|
137
|
-
from .
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
)
|
143
|
-
from .
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
193
|
+
from .execute_retriever_v1_retrievers_retrievers_retriever_id_execute_postop import (
|
194
|
+
ExecuteRetrieverV1RetrieversRetrieversRetrieverIDExecutePostRequest,
|
195
|
+
ExecuteRetrieverV1RetrieversRetrieversRetrieverIDExecutePostRequestTypedDict,
|
196
|
+
)
|
197
|
+
from .featureextractorconfig import (
|
198
|
+
FeatureExtractorConfig,
|
199
|
+
FeatureExtractorConfigTypedDict,
|
200
|
+
Parameters,
|
201
|
+
ParametersTypedDict,
|
202
|
+
)
|
203
|
+
from .featureextractordefinition import (
|
204
|
+
DefaultParameters,
|
205
|
+
DefaultParametersTypedDict,
|
206
|
+
FeatureExtractorDefinition,
|
207
|
+
FeatureExtractorDefinitionTypedDict,
|
208
|
+
InputSchema,
|
209
|
+
InputSchemaTypedDict,
|
210
|
+
OutputSchema,
|
211
|
+
OutputSchemaTypedDict,
|
212
|
+
ParameterSchema,
|
213
|
+
ParameterSchemaTypedDict,
|
214
|
+
)
|
215
|
+
from .filtercondition import FilterCondition, FilterConditionTypedDict
|
216
|
+
from .filteroperator import FilterOperator
|
150
217
|
from .floatindexparams import FloatIndexParams, FloatIndexParamsTypedDict
|
151
|
-
from .
|
152
|
-
FullAssetUpdateV1AssetsAssetIDPutRequest,
|
153
|
-
FullAssetUpdateV1AssetsAssetIDPutRequestTypedDict,
|
154
|
-
)
|
155
|
-
from .full_feature_update_v1_features_feature_id_putop import (
|
156
|
-
FullFeatureUpdateV1FeaturesFeatureIDPutRequest,
|
157
|
-
FullFeatureUpdateV1FeaturesFeatureIDPutRequestTypedDict,
|
158
|
-
)
|
218
|
+
from .generativemodels import GenerativeModels
|
159
219
|
from .genericsuccessresponse import (
|
160
220
|
GenericSuccessResponse,
|
161
221
|
GenericSuccessResponseTypedDict,
|
162
222
|
)
|
163
223
|
from .geoindexparams import GeoIndexParams, GeoIndexParamsTypedDict
|
164
|
-
from .
|
165
|
-
|
166
|
-
|
224
|
+
from .get_bucket_v1_buckets_bucket_identifier_getop import (
|
225
|
+
GetBucketV1BucketsBucketIdentifierGetRequest,
|
226
|
+
GetBucketV1BucketsBucketIdentifierGetRequestTypedDict,
|
227
|
+
)
|
228
|
+
from .get_cache_stats_v1_collections_cache_stats_getop import (
|
229
|
+
GetCacheStatsV1CollectionsCacheStatsGetRequest,
|
230
|
+
GetCacheStatsV1CollectionsCacheStatsGetRequestTypedDict,
|
167
231
|
)
|
168
|
-
from .
|
169
|
-
|
170
|
-
|
232
|
+
from .get_collection_v1_collections_collection_id_getop import (
|
233
|
+
GetCollectionV1CollectionsCollectionIDGetRequest,
|
234
|
+
GetCollectionV1CollectionsCollectionIDGetRequestTypedDict,
|
171
235
|
)
|
172
|
-
from .
|
173
|
-
|
174
|
-
|
236
|
+
from .get_document_v1_collections_collection_identifier_documents_document_id_getop import (
|
237
|
+
GetDocumentV1CollectionsCollectionIdentifierDocumentsDocumentIDGetRequest,
|
238
|
+
GetDocumentV1CollectionsCollectionIdentifierDocumentsDocumentIDGetRequestTypedDict,
|
175
239
|
)
|
176
|
-
from .
|
177
|
-
|
178
|
-
|
240
|
+
from .get_feature_extractor_v1_features_extractors_feature_id_getop import (
|
241
|
+
GetFeatureExtractorV1FeaturesExtractorsFeatureIDGetRequest,
|
242
|
+
GetFeatureExtractorV1FeaturesExtractorsFeatureIDGetRequestTypedDict,
|
179
243
|
)
|
180
|
-
from .
|
181
|
-
|
182
|
-
|
244
|
+
from .get_interaction_v1_retrievers_interactions_interaction_id_getop import (
|
245
|
+
GetInteractionV1RetrieversInteractionsInteractionIDGetRequest,
|
246
|
+
GetInteractionV1RetrieversInteractionsInteractionIDGetRequestTypedDict,
|
183
247
|
)
|
184
248
|
from .get_namespace_v1_namespaces_namespace_getop import (
|
185
249
|
GetNamespaceV1NamespacesNamespaceGetRequest,
|
186
250
|
GetNamespaceV1NamespacesNamespaceGetRequestTypedDict,
|
187
251
|
)
|
252
|
+
from .get_object_v1_buckets_bucket_identifier_objects_object_identifier_getop import (
|
253
|
+
GetObjectV1BucketsBucketIdentifierObjectsObjectIdentifierGetRequest,
|
254
|
+
GetObjectV1BucketsBucketIdentifierObjectsObjectIdentifierGetRequestTypedDict,
|
255
|
+
)
|
256
|
+
from .get_research_v1_research_getop import (
|
257
|
+
GetResearchV1ResearchGetRequest,
|
258
|
+
GetResearchV1ResearchGetRequestTypedDict,
|
259
|
+
)
|
260
|
+
from .get_retriever_stages_v1_retrievers_stages_getop import (
|
261
|
+
GetRetrieverStagesV1RetrieversStagesGetRequest,
|
262
|
+
GetRetrieverStagesV1RetrieversStagesGetRequestTypedDict,
|
263
|
+
)
|
264
|
+
from .get_retriever_v1_retrievers_retrievers_retriever_id_getop import (
|
265
|
+
GetRetrieverV1RetrieversRetrieversRetrieverIDGetRequest,
|
266
|
+
GetRetrieverV1RetrieversRetrieversRetrieverIDGetRequestTypedDict,
|
267
|
+
)
|
188
268
|
from .get_task_v1_tasks_task_id_getop import (
|
189
269
|
GetTaskV1TasksTaskIDGetRequest,
|
190
270
|
GetTaskV1TasksTaskIDGetRequestTypedDict,
|
191
271
|
)
|
192
|
-
from .get_taxonomy_node_v1_entities_taxonomies_nodes_node_getop import (
|
193
|
-
GetTaxonomyNodeV1EntitiesTaxonomiesNodesNodeGetRequest,
|
194
|
-
GetTaxonomyNodeV1EntitiesTaxonomiesNodesNodeGetRequestTypedDict,
|
195
|
-
)
|
196
|
-
from .get_taxonomy_v1_entities_taxonomies_taxonomy_getop import (
|
197
|
-
GetTaxonomyV1EntitiesTaxonomiesTaxonomyGetRequest,
|
198
|
-
GetTaxonomyV1EntitiesTaxonomiesTaxonomyGetRequestTypedDict,
|
199
|
-
)
|
200
272
|
from .get_user_v1_organizations_users_user_email_getop import (
|
201
273
|
GetUserV1OrganizationsUsersUserEmailGetRequest,
|
202
274
|
GetUserV1OrganizationsUsersUserEmailGetRequestTypedDict,
|
203
275
|
)
|
204
|
-
from .
|
205
|
-
from .
|
206
|
-
from .groupedassetdata import GroupedAssetData, GroupedAssetDataTypedDict
|
276
|
+
from .getusagerequestmodel import GetUsageRequestModel, GetUsageRequestModelTypedDict
|
277
|
+
from .hdbscanparameters import HDBSCANParameters, HDBSCANParametersTypedDict
|
207
278
|
from .healthcheckresponse import HealthCheckResponse, HealthCheckResponseTypedDict
|
208
279
|
from .httpvalidationerror import HTTPValidationError, HTTPValidationErrorData
|
209
|
-
from .imagedescribesettings import (
|
210
|
-
ImageDescribeSettings,
|
211
|
-
ImageDescribeSettingsJSONOutput,
|
212
|
-
ImageDescribeSettingsJSONOutputTypedDict,
|
213
|
-
ImageDescribeSettingsTypedDict,
|
214
|
-
)
|
215
|
-
from .imagedetectsettings import ImageDetectSettings, ImageDetectSettingsTypedDict
|
216
|
-
from .imagereadsettings import (
|
217
|
-
ImageReadSettings,
|
218
|
-
ImageReadSettingsJSONOutput,
|
219
|
-
ImageReadSettingsJSONOutputTypedDict,
|
220
|
-
ImageReadSettingsTypedDict,
|
221
|
-
)
|
222
|
-
from .imagesettings import ImageSettings, ImageSettingsTypedDict
|
223
|
-
from .ingest_image_url_v1_ingest_images_url_postop import (
|
224
|
-
IngestImageURLV1IngestImagesURLPostRequest,
|
225
|
-
IngestImageURLV1IngestImagesURLPostRequestTypedDict,
|
226
|
-
)
|
227
|
-
from .ingest_text_v1_ingest_text_postop import (
|
228
|
-
IngestTextV1IngestTextPostRequest,
|
229
|
-
IngestTextV1IngestTextPostRequestTypedDict,
|
230
|
-
)
|
231
|
-
from .ingest_video_url_v1_ingest_videos_url_postop import (
|
232
|
-
IngestVideoURLV1IngestVideosURLPostRequest,
|
233
|
-
IngestVideoURLV1IngestVideosURLPostRequestTypedDict,
|
234
|
-
)
|
235
|
-
from .inputtype import InputType
|
236
280
|
from .integerindexparams import IntegerIndexParams, IntegerIndexParamsTypedDict
|
237
|
-
from .
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
)
|
243
|
-
from .
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
from .
|
250
|
-
JSONVideoOutputSettings,
|
251
|
-
JSONVideoOutputSettingsResponseShape,
|
252
|
-
JSONVideoOutputSettingsResponseShapeTypedDict,
|
253
|
-
JSONVideoOutputSettingsTypedDict,
|
254
|
-
)
|
281
|
+
from .interactionresponse import (
|
282
|
+
InteractionResponse,
|
283
|
+
InteractionResponseMetadata,
|
284
|
+
InteractionResponseMetadataTypedDict,
|
285
|
+
InteractionResponseTypedDict,
|
286
|
+
)
|
287
|
+
from .interactiontype import InteractionType
|
288
|
+
from .invalidate_cache_v1_collections_cache_invalidate_postop import (
|
289
|
+
InvalidateCacheV1CollectionsCacheInvalidatePostRequest,
|
290
|
+
InvalidateCacheV1CollectionsCacheInvalidatePostRequestTypedDict,
|
291
|
+
)
|
292
|
+
from .invalidationevent import InvalidationEvent, InvalidationEventTypedDict
|
293
|
+
from .invalidationstrategy import InvalidationStrategy
|
255
294
|
from .keywordindexparams import KeywordIndexParams, KeywordIndexParamsTypedDict
|
256
295
|
from .kill_task_v1_tasks_task_id_deleteop import (
|
257
296
|
KillTaskV1TasksTaskIDDeleteRequest,
|
@@ -261,171 +300,176 @@ from .list_active_tasks_v1_tasks_getop import (
|
|
261
300
|
ListActiveTasksV1TasksGetRequest,
|
262
301
|
ListActiveTasksV1TasksGetRequestTypedDict,
|
263
302
|
)
|
264
|
-
from .
|
265
|
-
|
266
|
-
|
267
|
-
)
|
268
|
-
from .list_classifications_v1_entities_taxonomies_taxonomy_classifications_postop import (
|
269
|
-
ListClassificationsV1EntitiesTaxonomiesTaxonomyClassificationsPostRequest,
|
270
|
-
ListClassificationsV1EntitiesTaxonomiesTaxonomyClassificationsPostRequestTypedDict,
|
271
|
-
)
|
272
|
-
from .list_collections_v1_collections_getop import (
|
273
|
-
ListCollectionsV1CollectionsGetRequest,
|
274
|
-
ListCollectionsV1CollectionsGetRequestTypedDict,
|
303
|
+
from .list_buckets_v1_buckets_postop import (
|
304
|
+
ListBucketsV1BucketsPostRequest,
|
305
|
+
ListBucketsV1BucketsPostRequestTypedDict,
|
275
306
|
)
|
276
|
-
from .
|
277
|
-
|
278
|
-
|
307
|
+
from .list_documents_v1_collections_collection_identifier_documents_getop import (
|
308
|
+
ListDocumentsV1CollectionsCollectionIdentifierDocumentsGetRequest,
|
309
|
+
ListDocumentsV1CollectionsCollectionIdentifierDocumentsGetRequestTypedDict,
|
279
310
|
)
|
280
|
-
from .
|
281
|
-
|
282
|
-
|
311
|
+
from .list_interactions_v1_retrievers_interactions_getop import (
|
312
|
+
ListInteractionsV1RetrieversInteractionsGetRequest,
|
313
|
+
ListInteractionsV1RetrieversInteractionsGetRequestTypedDict,
|
283
314
|
)
|
284
|
-
from .
|
285
|
-
|
286
|
-
|
287
|
-
ListClassificationsRequest,
|
288
|
-
ListClassificationsRequestTypedDict,
|
315
|
+
from .list_objects_v1_buckets_bucket_identifier_objects_postop import (
|
316
|
+
ListObjectsV1BucketsBucketIdentifierObjectsPostRequest,
|
317
|
+
ListObjectsV1BucketsBucketIdentifierObjectsPostRequestTypedDict,
|
289
318
|
)
|
290
|
-
from .
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
from .listcollectionsresponse import (
|
295
|
-
ListCollectionsResponse,
|
296
|
-
ListCollectionsResponseTypedDict,
|
297
|
-
)
|
298
|
-
from .listfeaturesrequest import ListFeaturesRequest, ListFeaturesRequestTypedDict
|
299
|
-
from .listfeaturesresponse import ListFeaturesResponse, ListFeaturesResponseTypedDict
|
319
|
+
from .listbucketsrequest import ListBucketsRequest, ListBucketsRequestTypedDict
|
320
|
+
from .listbucketsresponse import ListBucketsResponse, ListBucketsResponseTypedDict
|
321
|
+
from .listobjectsrequest import ListObjectsRequest, ListObjectsRequestTypedDict
|
322
|
+
from .listobjectsresponse import ListObjectsResponse, ListObjectsResponseTypedDict
|
300
323
|
from .listtasksresponse import ListTasksResponse, ListTasksResponseTypedDict
|
301
|
-
from .
|
302
|
-
ListTaxonomiesResponse,
|
303
|
-
ListTaxonomiesResponseTypedDict,
|
304
|
-
)
|
305
|
-
from .logicaloperator import (
|
324
|
+
from .logicaloperator_input import (
|
306
325
|
And,
|
307
326
|
AndTypedDict,
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
327
|
+
LogicalOperatorInput,
|
328
|
+
LogicalOperatorInputTypedDict,
|
329
|
+
Not,
|
330
|
+
NotTypedDict,
|
312
331
|
Or,
|
313
332
|
OrTypedDict,
|
314
333
|
)
|
315
|
-
from .
|
316
|
-
|
317
|
-
|
334
|
+
from .logicaloperator_output import (
|
335
|
+
LogicalOperatorOutput,
|
336
|
+
LogicalOperatorOutputAND,
|
337
|
+
LogicalOperatorOutputANDTypedDict,
|
338
|
+
LogicalOperatorOutputNOT,
|
339
|
+
LogicalOperatorOutputNOTTypedDict,
|
340
|
+
LogicalOperatorOutputOR,
|
341
|
+
LogicalOperatorOutputORTypedDict,
|
342
|
+
LogicalOperatorOutputTypedDict,
|
343
|
+
)
|
344
|
+
from .multivectorindex import MultiVectorIndex, MultiVectorIndexTypedDict
|
318
345
|
from .namespaceresponse import NamespaceResponse, NamespaceResponseTypedDict
|
319
|
-
from .
|
320
|
-
from .
|
346
|
+
from .namespaceusage import NamespaceUsage, NamespaceUsageTypedDict
|
347
|
+
from .namingmethod import NamingMethod
|
348
|
+
from .objectresponse import (
|
349
|
+
ObjectResponse,
|
350
|
+
ObjectResponseMetadata,
|
351
|
+
ObjectResponseMetadataTypedDict,
|
352
|
+
ObjectResponseTypedDict,
|
353
|
+
)
|
321
354
|
from .organizationmodel import (
|
322
355
|
OrganizationModel,
|
323
356
|
OrganizationModelMetadata,
|
324
357
|
OrganizationModelMetadataTypedDict,
|
325
358
|
OrganizationModelTypedDict,
|
326
359
|
)
|
327
|
-
from .
|
328
|
-
PartialAssetUpdateV1AssetsAssetIDPatchRequest,
|
329
|
-
PartialAssetUpdateV1AssetsAssetIDPatchRequestTypedDict,
|
330
|
-
)
|
331
|
-
from .patch_namespace_v1_namespaces_namespace_patchop import (
|
332
|
-
PatchNamespaceV1NamespacesNamespacePatchRequest,
|
333
|
-
PatchNamespaceV1NamespacesNamespacePatchRequestTypedDict,
|
334
|
-
)
|
360
|
+
from .paginationresponse import PaginationResponse, PaginationResponseTypedDict
|
335
361
|
from .payloadindexconfig import (
|
336
362
|
FieldSchema,
|
337
363
|
FieldSchemaTypedDict,
|
338
364
|
PayloadIndexConfig,
|
339
365
|
PayloadIndexConfigTypedDict,
|
340
366
|
)
|
341
|
-
from .payloadindextype import PayloadIndexType, PayloadIndexTypeTypedDict
|
342
367
|
from .payloadschematype import PayloadSchemaType
|
343
368
|
from .permission import Permission
|
344
|
-
from .
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
SearchFeaturesV1FeaturesSearchPostResponseSearchFeaturesV1FeaturesSearchPostTypedDict,
|
373
|
-
)
|
374
|
-
from .search_model_searchquery import (
|
375
|
-
SearchModelSearchQuery,
|
376
|
-
SearchModelSearchQueryTypedDict,
|
377
|
-
Type,
|
369
|
+
from .plan import Plan, PlanTypedDict
|
370
|
+
from .recomputestrategy import RecomputeStrategy
|
371
|
+
from .resourcetotals import ResourceTotals, ResourceTotalsTypedDict
|
372
|
+
from .retrieverbinding import (
|
373
|
+
Inputs,
|
374
|
+
InputsTypedDict,
|
375
|
+
RetrieverBinding,
|
376
|
+
RetrieverBindingTypedDict,
|
377
|
+
)
|
378
|
+
from .retrievercacheconfig import RetrieverCacheConfig, RetrieverCacheConfigTypedDict
|
379
|
+
from .retrievermodel import (
|
380
|
+
RetrieverModel,
|
381
|
+
RetrieverModelMetadata,
|
382
|
+
RetrieverModelMetadataTypedDict,
|
383
|
+
RetrieverModelTypedDict,
|
384
|
+
)
|
385
|
+
from .retrieverqueryrequest import (
|
386
|
+
RetrieverQueryRequest,
|
387
|
+
RetrieverQueryRequestInputs,
|
388
|
+
RetrieverQueryRequestInputsTypedDict,
|
389
|
+
RetrieverQueryRequestTypedDict,
|
390
|
+
)
|
391
|
+
from .retrieverresponse import RetrieverResponse, RetrieverResponseTypedDict
|
392
|
+
from .searchinteraction import (
|
393
|
+
SearchInteraction,
|
394
|
+
SearchInteractionMetadata,
|
395
|
+
SearchInteractionMetadataTypedDict,
|
396
|
+
SearchInteractionTypedDict,
|
378
397
|
)
|
379
|
-
from .searchassetsrequest import SearchAssetsRequest, SearchAssetsRequestTypedDict
|
380
|
-
from .searchrequestfeatures import SearchRequestFeatures, SearchRequestFeaturesTypedDict
|
381
398
|
from .security import Security, SecurityTypedDict
|
382
|
-
from .
|
383
|
-
from .
|
399
|
+
from .singlelineageentry import SingleLineageEntry, SingleLineageEntryTypedDict
|
400
|
+
from .sortdirection import SortDirection
|
401
|
+
from .sortoption import SortOption, SortOptionTypedDict
|
402
|
+
from .sourceconfig_input import SourceConfigInput, SourceConfigInputTypedDict
|
403
|
+
from .sourceconfig_output import SourceConfigOutput, SourceConfigOutputTypedDict
|
404
|
+
from .sourcetype import SourceType
|
405
|
+
from .stageconfig_input import (
|
406
|
+
StageConfigInput,
|
407
|
+
StageConfigInputParameters,
|
408
|
+
StageConfigInputParametersTypedDict,
|
409
|
+
StageConfigInputTypedDict,
|
410
|
+
)
|
411
|
+
from .stageconfig_output import (
|
412
|
+
StageConfigOutput,
|
413
|
+
StageConfigOutputParameters,
|
414
|
+
StageConfigOutputParametersTypedDict,
|
415
|
+
StageConfigOutputTypedDict,
|
416
|
+
)
|
417
|
+
from .stagedefinition import (
|
418
|
+
StageDefinition,
|
419
|
+
StageDefinitionDefaultParameters,
|
420
|
+
StageDefinitionDefaultParametersTypedDict,
|
421
|
+
StageDefinitionTypedDict,
|
422
|
+
)
|
423
|
+
from .stageresponse import (
|
424
|
+
Results,
|
425
|
+
ResultsTypedDict,
|
426
|
+
StageResponse,
|
427
|
+
StageResponseTypedDict,
|
428
|
+
)
|
384
429
|
from .taskresponse import TaskResponse, TaskResponseTypedDict
|
385
430
|
from .taskstatus import TaskStatus
|
386
|
-
from .
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
from .taxonomymodel import TaxonomyModel, TaxonomyModelTypedDict
|
392
|
-
from .taxonomynode import TaxonomyNode, TaxonomyNodeTypedDict
|
393
|
-
from .taxonomynodecreate import TaxonomyNodeCreate, TaxonomyNodeCreateTypedDict
|
394
|
-
from .taxonomyupdate import TaxonomyUpdate, TaxonomyUpdateTypedDict
|
431
|
+
from .taxonomyapplicationconfig import (
|
432
|
+
TaxonomyApplicationConfig,
|
433
|
+
TaxonomyApplicationConfigTypedDict,
|
434
|
+
)
|
435
|
+
from .taxonomyconfig import TaxonomyConfig, TaxonomyConfigTypedDict
|
395
436
|
from .textindexparams import TextIndexParams, TextIndexParamsTypedDict
|
396
|
-
from .
|
437
|
+
from .timeseriesdatapoint import TimeseriesDataPoint, TimeseriesDataPointTypedDict
|
438
|
+
from .timeseriesusage import TimeseriesUsage, TimeseriesUsageTypedDict
|
397
439
|
from .tokenizertype import TokenizerType
|
398
440
|
from .update_api_key_v1_organizations_users_user_email_api_keys_key_name_patchop import (
|
399
441
|
UpdateAPIKeyV1OrganizationsUsersUserEmailAPIKeysKeyNamePatchRequest,
|
400
442
|
UpdateAPIKeyV1OrganizationsUsersUserEmailAPIKeysKeyNamePatchRequestTypedDict,
|
401
443
|
)
|
402
|
-
from .
|
403
|
-
|
404
|
-
|
444
|
+
from .update_bucket_v1_buckets_bucket_identifier_putop import (
|
445
|
+
UpdateBucketV1BucketsBucketIdentifierPutRequest,
|
446
|
+
UpdateBucketV1BucketsBucketIdentifierPutRequestTypedDict,
|
447
|
+
)
|
448
|
+
from .update_document_v1_collections_collection_identifier_documents_document_id_putop import (
|
449
|
+
UpdateDocumentV1CollectionsCollectionIdentifierDocumentsDocumentIDPutRequest,
|
450
|
+
UpdateDocumentV1CollectionsCollectionIdentifierDocumentsDocumentIDPutRequestTypedDict,
|
405
451
|
)
|
406
452
|
from .update_namespace_v1_namespaces_namespace_putop import (
|
407
453
|
UpdateNamespaceV1NamespacesNamespacePutRequest,
|
408
454
|
UpdateNamespaceV1NamespacesNamespacePutRequestTypedDict,
|
409
455
|
)
|
410
|
-
from .
|
411
|
-
|
412
|
-
|
413
|
-
)
|
414
|
-
from .update_taxonomy_v1_entities_taxonomies_taxonomy_patchop import (
|
415
|
-
UpdateTaxonomyV1EntitiesTaxonomiesTaxonomyPatchRequest,
|
416
|
-
UpdateTaxonomyV1EntitiesTaxonomiesTaxonomyPatchRequestTypedDict,
|
417
|
-
)
|
418
|
-
from .updateassetrequest import (
|
419
|
-
UpdateAssetRequest,
|
420
|
-
UpdateAssetRequestMetadata,
|
421
|
-
UpdateAssetRequestMetadataTypedDict,
|
422
|
-
UpdateAssetRequestTypedDict,
|
456
|
+
from .update_object_v1_buckets_bucket_identifier_objects_object_identifier_putop import (
|
457
|
+
UpdateObjectV1BucketsBucketIdentifierObjectsObjectIdentifierPutRequest,
|
458
|
+
UpdateObjectV1BucketsBucketIdentifierObjectsObjectIdentifierPutRequestTypedDict,
|
423
459
|
)
|
424
460
|
from .updatenamespacerequest import (
|
425
461
|
UpdateNamespaceRequest,
|
426
462
|
UpdateNamespaceRequestTypedDict,
|
427
463
|
)
|
428
|
-
from .
|
464
|
+
from .updateobjectrequest import (
|
465
|
+
UpdateObjectRequest,
|
466
|
+
UpdateObjectRequestMetadata,
|
467
|
+
UpdateObjectRequestMetadataTypedDict,
|
468
|
+
UpdateObjectRequestTypedDict,
|
469
|
+
)
|
470
|
+
from .usageresponse import UsageResponse, UsageResponseTypedDict
|
471
|
+
from .usagesummary import UsageSummary, UsageSummaryTypedDict
|
472
|
+
from .usagetimerange import UsageTimeRange
|
429
473
|
from .usermodel_input import (
|
430
474
|
UserModelInput,
|
431
475
|
UserModelInputMetadata,
|
@@ -445,28 +489,16 @@ from .validationerror import (
|
|
445
489
|
ValidationError,
|
446
490
|
ValidationErrorTypedDict,
|
447
491
|
)
|
448
|
-
from .
|
449
|
-
from .
|
450
|
-
from .
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
from .videodetectsettings import VideoDetectSettings, VideoDetectSettingsTypedDict
|
457
|
-
from .videoreadsettings import (
|
458
|
-
JSONOutput,
|
459
|
-
JSONOutputTypedDict,
|
460
|
-
VideoReadSettings,
|
461
|
-
VideoReadSettingsTypedDict,
|
462
|
-
)
|
463
|
-
from .videosettings import VideoSettings, VideoSettingsTypedDict
|
464
|
-
from .videotranscriptionsettings import (
|
465
|
-
VideoTranscriptionSettings,
|
466
|
-
VideoTranscriptionSettingsJSONOutput,
|
467
|
-
VideoTranscriptionSettingsJSONOutputTypedDict,
|
468
|
-
VideoTranscriptionSettingsTypedDict,
|
492
|
+
from .vectorbasedconfig import VectorBasedConfig, VectorBasedConfigTypedDict
|
493
|
+
from .vectorindex import VectorIndex, VectorIndexTypedDict
|
494
|
+
from .vectorindexdefinition import (
|
495
|
+
Index,
|
496
|
+
IndexTypedDict,
|
497
|
+
Type,
|
498
|
+
VectorIndexDefinition,
|
499
|
+
VectorIndexDefinitionTypedDict,
|
469
500
|
)
|
501
|
+
from .vectortype import VectorType
|
470
502
|
|
471
503
|
|
472
504
|
__all__ = [
|
@@ -475,339 +507,371 @@ __all__ = [
|
|
475
507
|
"APIKeyTypedDict",
|
476
508
|
"APIKeyUpdate",
|
477
509
|
"APIKeyUpdateTypedDict",
|
478
|
-
"
|
479
|
-
"ActionUsageTypedDict",
|
510
|
+
"AggregationType",
|
480
511
|
"And",
|
481
512
|
"AndTypedDict",
|
482
|
-
"
|
483
|
-
"
|
484
|
-
"
|
485
|
-
"
|
486
|
-
"
|
487
|
-
"
|
488
|
-
"
|
489
|
-
"
|
490
|
-
"
|
491
|
-
"
|
492
|
-
"
|
493
|
-
"
|
494
|
-
"
|
495
|
-
"
|
513
|
+
"AttributeBasedConfig",
|
514
|
+
"AttributeBasedConfigTypedDict",
|
515
|
+
"AutomaticNaming",
|
516
|
+
"AutomaticNamingTypedDict",
|
517
|
+
"BasicFeatureExtractor",
|
518
|
+
"BasicFeatureExtractorTypedDict",
|
519
|
+
"BatchDeleteDocumentsV1CollectionsCollectionIdentifierDocumentsBatchDeleteRequest",
|
520
|
+
"BatchDeleteDocumentsV1CollectionsCollectionIdentifierDocumentsBatchDeleteRequestTypedDict",
|
521
|
+
"BatchUpdateDocumentsV1CollectionsCollectionIdentifierDocumentsBatchPutRequest",
|
522
|
+
"BatchUpdateDocumentsV1CollectionsCollectionIdentifierDocumentsBatchPutRequestTypedDict",
|
523
|
+
"BlobDetails",
|
524
|
+
"BlobDetailsTypedDict",
|
525
|
+
"BlobModel",
|
526
|
+
"BlobModelMetadata",
|
527
|
+
"BlobModelMetadataTypedDict",
|
528
|
+
"BlobModelTypedDict",
|
496
529
|
"BoolIndexParams",
|
497
530
|
"BoolIndexParamsTypedDict",
|
498
|
-
"
|
499
|
-
"
|
500
|
-
"
|
501
|
-
"
|
502
|
-
"
|
503
|
-
"
|
504
|
-
"
|
505
|
-
"
|
506
|
-
"
|
507
|
-
"
|
531
|
+
"BucketCreateRequest",
|
532
|
+
"BucketCreateRequestMetadata",
|
533
|
+
"BucketCreateRequestMetadataTypedDict",
|
534
|
+
"BucketCreateRequestTypedDict",
|
535
|
+
"BucketResponse",
|
536
|
+
"BucketResponseMetadata",
|
537
|
+
"BucketResponseMetadataTypedDict",
|
538
|
+
"BucketResponseTypedDict",
|
539
|
+
"BucketSchemaFieldInput",
|
540
|
+
"BucketSchemaFieldInputTypedDict",
|
541
|
+
"BucketSchemaFieldOutput",
|
542
|
+
"BucketSchemaFieldOutputTypedDict",
|
543
|
+
"BucketSchemaFieldType",
|
544
|
+
"BucketSchemaInput",
|
545
|
+
"BucketSchemaInputTypedDict",
|
546
|
+
"BucketSchemaOutput",
|
547
|
+
"BucketSchemaOutputTypedDict",
|
548
|
+
"BucketUpdateRequest",
|
549
|
+
"BucketUpdateRequestTypedDict",
|
550
|
+
"CacheStats",
|
551
|
+
"CacheStatsTypedDict",
|
552
|
+
"CleanupCacheV1CollectionsCacheCleanupPostRequest",
|
553
|
+
"CleanupCacheV1CollectionsCacheCleanupPostRequestTypedDict",
|
554
|
+
"ClusterType",
|
555
|
+
"ClusteringMethod",
|
556
|
+
"CollectionCacheConfigInput",
|
557
|
+
"CollectionCacheConfigInputTypedDict",
|
558
|
+
"CollectionCacheConfigOutput",
|
559
|
+
"CollectionCacheConfigOutputTypedDict",
|
560
|
+
"CollectionConfig",
|
561
|
+
"CollectionConfigTypedDict",
|
508
562
|
"CollectionModel",
|
509
563
|
"CollectionModelMetadata",
|
510
564
|
"CollectionModelMetadataTypedDict",
|
511
565
|
"CollectionModelTypedDict",
|
512
|
-
"CollectionResult",
|
513
|
-
"CollectionResultMetadata",
|
514
|
-
"CollectionResultMetadataTypedDict",
|
515
|
-
"CollectionResultTypedDict",
|
516
566
|
"CreateAPIKeyV1OrganizationsUsersUserEmailAPIKeysPostRequest",
|
517
567
|
"CreateAPIKeyV1OrganizationsUsersUserEmailAPIKeysPostRequestTypedDict",
|
568
|
+
"CreateBlobRequest",
|
569
|
+
"CreateBlobRequestMetadata",
|
570
|
+
"CreateBlobRequestMetadataTypedDict",
|
571
|
+
"CreateBlobRequestTypedDict",
|
572
|
+
"CreateBucketV1BucketsCreatePostRequest",
|
573
|
+
"CreateBucketV1BucketsCreatePostRequestTypedDict",
|
574
|
+
"CreateClusterRequest",
|
575
|
+
"CreateClusterRequestTypedDict",
|
576
|
+
"CreateClusterV1ClustersPostRequest",
|
577
|
+
"CreateClusterV1ClustersPostRequestTypedDict",
|
518
578
|
"CreateCollectionRequest",
|
519
579
|
"CreateCollectionRequestMetadata",
|
520
580
|
"CreateCollectionRequestMetadataTypedDict",
|
521
581
|
"CreateCollectionRequestTypedDict",
|
522
|
-
"
|
523
|
-
"
|
582
|
+
"CreateCollectionV1CollectionsCreatePostRequest",
|
583
|
+
"CreateCollectionV1CollectionsCreatePostRequestTypedDict",
|
584
|
+
"CreateInteractionV1RetrieversInteractionsPostRequest",
|
585
|
+
"CreateInteractionV1RetrieversInteractionsPostRequestTypedDict",
|
524
586
|
"CreateNamespaceRequest",
|
525
587
|
"CreateNamespaceRequestTypedDict",
|
526
|
-
"
|
527
|
-
"
|
528
|
-
"
|
529
|
-
"
|
588
|
+
"CreateObjectRequest",
|
589
|
+
"CreateObjectRequestMetadata",
|
590
|
+
"CreateObjectRequestMetadataTypedDict",
|
591
|
+
"CreateObjectRequestTypedDict",
|
592
|
+
"CreateObjectV1BucketsBucketIdentifierObjectsCreatePostRequest",
|
593
|
+
"CreateObjectV1BucketsBucketIdentifierObjectsCreatePostRequestTypedDict",
|
594
|
+
"CreateRetrieverRequest",
|
595
|
+
"CreateRetrieverRequestMetadata",
|
596
|
+
"CreateRetrieverRequestMetadataTypedDict",
|
597
|
+
"CreateRetrieverRequestTypedDict",
|
598
|
+
"CreateRetrieverV1RetrieversRetrieversPostRequest",
|
599
|
+
"CreateRetrieverV1RetrieversRetrieversPostRequestTypedDict",
|
600
|
+
"CreateTaxonomyRequest",
|
601
|
+
"CreateTaxonomyRequestTypedDict",
|
602
|
+
"CreateTaxonomyV1TaxonomiesPostRequest",
|
603
|
+
"CreateTaxonomyV1TaxonomiesPostRequestTypedDict",
|
530
604
|
"DatetimeIndexParams",
|
531
605
|
"DatetimeIndexParamsTypedDict",
|
532
|
-
"
|
533
|
-
"
|
606
|
+
"DefaultParameters",
|
607
|
+
"DefaultParametersTypedDict",
|
534
608
|
"DeleteAPIKeyV1OrganizationsUsersUserEmailAPIKeysKeyNameDeleteRequest",
|
535
609
|
"DeleteAPIKeyV1OrganizationsUsersUserEmailAPIKeysKeyNameDeleteRequestTypedDict",
|
536
|
-
"
|
537
|
-
"
|
538
|
-
"
|
539
|
-
"
|
540
|
-
"
|
541
|
-
"
|
542
|
-
"DeleteFeatureV1FeaturesFeatureIDDeleteRequest",
|
543
|
-
"DeleteFeatureV1FeaturesFeatureIDDeleteRequestTypedDict",
|
610
|
+
"DeleteBucketV1BucketsBucketIdentifierDeleteRequest",
|
611
|
+
"DeleteBucketV1BucketsBucketIdentifierDeleteRequestTypedDict",
|
612
|
+
"DeleteDocumentV1CollectionsCollectionIdentifierDocumentsDocumentIDDeleteRequest",
|
613
|
+
"DeleteDocumentV1CollectionsCollectionIdentifierDocumentsDocumentIDDeleteRequestTypedDict",
|
614
|
+
"DeleteInteractionV1RetrieversInteractionsInteractionIDDeleteRequest",
|
615
|
+
"DeleteInteractionV1RetrieversInteractionsInteractionIDDeleteRequestTypedDict",
|
544
616
|
"DeleteNamespaceV1NamespacesNamespaceDeleteRequest",
|
545
617
|
"DeleteNamespaceV1NamespacesNamespaceDeleteRequestTypedDict",
|
546
|
-
"
|
547
|
-
"
|
618
|
+
"DeleteObjectV1BucketsBucketIdentifierObjectsObjectIdentifierDeleteRequest",
|
619
|
+
"DeleteObjectV1BucketsBucketIdentifierObjectsObjectIdentifierDeleteRequestTypedDict",
|
548
620
|
"DeleteUserV1OrganizationsUsersUserEmailDeleteRequest",
|
549
621
|
"DeleteUserV1OrganizationsUsersUserEmailDeleteRequestTypedDict",
|
550
|
-
"DenseEmbedding",
|
551
|
-
"DenseEmbeddingTypedDict",
|
552
622
|
"Details",
|
553
623
|
"DetailsTypedDict",
|
554
|
-
"
|
555
|
-
"
|
556
|
-
"
|
557
|
-
"
|
558
|
-
"
|
559
|
-
"
|
560
|
-
"
|
561
|
-
"
|
562
|
-
"
|
563
|
-
"
|
564
|
-
"
|
565
|
-
"
|
566
|
-
"
|
567
|
-
"
|
624
|
+
"DocumentHandlingConfig",
|
625
|
+
"DocumentHandlingConfigTypedDict",
|
626
|
+
"DocumentInputHandling",
|
627
|
+
"DocumentListResponse",
|
628
|
+
"DocumentListResponseTypedDict",
|
629
|
+
"DocumentOutputHandling",
|
630
|
+
"DocumentOutputType",
|
631
|
+
"DocumentResponse",
|
632
|
+
"DocumentResponseMetadata",
|
633
|
+
"DocumentResponseMetadataTypedDict",
|
634
|
+
"DocumentResponseTypedDict",
|
635
|
+
"DocumentUpdate",
|
636
|
+
"DocumentUpdateMetadata",
|
637
|
+
"DocumentUpdateMetadataTypedDict",
|
638
|
+
"DocumentUpdateTypedDict",
|
639
|
+
"EnrichmentField",
|
640
|
+
"EnrichmentFieldTypedDict",
|
568
641
|
"ErrorDetail",
|
569
642
|
"ErrorDetailTypedDict",
|
570
643
|
"ErrorResponse",
|
571
644
|
"ErrorResponseData",
|
572
|
-
"
|
573
|
-
"
|
574
|
-
"
|
575
|
-
"
|
576
|
-
"
|
577
|
-
"
|
578
|
-
"FeatureUpdateRequest",
|
579
|
-
"FeatureUpdateRequestMetadata",
|
580
|
-
"FeatureUpdateRequestMetadataTypedDict",
|
581
|
-
"FeatureUpdateRequestTypedDict",
|
582
|
-
"FeaturesModelPaginationResponse",
|
583
|
-
"FeaturesModelPaginationResponseTypedDict",
|
645
|
+
"ExecuteRetrieverV1RetrieversRetrieversRetrieverIDExecutePostRequest",
|
646
|
+
"ExecuteRetrieverV1RetrieversRetrieversRetrieverIDExecutePostRequestTypedDict",
|
647
|
+
"FeatureExtractorConfig",
|
648
|
+
"FeatureExtractorConfigTypedDict",
|
649
|
+
"FeatureExtractorDefinition",
|
650
|
+
"FeatureExtractorDefinitionTypedDict",
|
584
651
|
"FieldSchema",
|
585
652
|
"FieldSchemaTypedDict",
|
586
|
-
"FileData",
|
587
|
-
"FileDataTypedDict",
|
588
653
|
"FilterCondition",
|
589
654
|
"FilterConditionTypedDict",
|
655
|
+
"FilterOperator",
|
590
656
|
"FloatIndexParams",
|
591
657
|
"FloatIndexParamsTypedDict",
|
592
|
-
"
|
593
|
-
"FullAssetUpdateV1AssetsAssetIDPutRequestTypedDict",
|
594
|
-
"FullFeatureUpdateV1FeaturesFeatureIDPutRequest",
|
595
|
-
"FullFeatureUpdateV1FeaturesFeatureIDPutRequestTypedDict",
|
658
|
+
"GenerativeModels",
|
596
659
|
"GenericSuccessResponse",
|
597
660
|
"GenericSuccessResponseTypedDict",
|
598
661
|
"GeoIndexParams",
|
599
662
|
"GeoIndexParamsTypedDict",
|
600
|
-
"
|
601
|
-
"
|
602
|
-
"
|
603
|
-
"
|
604
|
-
"
|
605
|
-
"
|
606
|
-
"
|
607
|
-
"
|
608
|
-
"
|
609
|
-
"
|
663
|
+
"GetBucketV1BucketsBucketIdentifierGetRequest",
|
664
|
+
"GetBucketV1BucketsBucketIdentifierGetRequestTypedDict",
|
665
|
+
"GetCacheStatsV1CollectionsCacheStatsGetRequest",
|
666
|
+
"GetCacheStatsV1CollectionsCacheStatsGetRequestTypedDict",
|
667
|
+
"GetCollectionV1CollectionsCollectionIDGetRequest",
|
668
|
+
"GetCollectionV1CollectionsCollectionIDGetRequestTypedDict",
|
669
|
+
"GetDocumentV1CollectionsCollectionIdentifierDocumentsDocumentIDGetRequest",
|
670
|
+
"GetDocumentV1CollectionsCollectionIdentifierDocumentsDocumentIDGetRequestTypedDict",
|
671
|
+
"GetFeatureExtractorV1FeaturesExtractorsFeatureIDGetRequest",
|
672
|
+
"GetFeatureExtractorV1FeaturesExtractorsFeatureIDGetRequestTypedDict",
|
673
|
+
"GetInteractionV1RetrieversInteractionsInteractionIDGetRequest",
|
674
|
+
"GetInteractionV1RetrieversInteractionsInteractionIDGetRequestTypedDict",
|
610
675
|
"GetNamespaceV1NamespacesNamespaceGetRequest",
|
611
676
|
"GetNamespaceV1NamespacesNamespaceGetRequestTypedDict",
|
677
|
+
"GetObjectV1BucketsBucketIdentifierObjectsObjectIdentifierGetRequest",
|
678
|
+
"GetObjectV1BucketsBucketIdentifierObjectsObjectIdentifierGetRequestTypedDict",
|
679
|
+
"GetResearchV1ResearchGetRequest",
|
680
|
+
"GetResearchV1ResearchGetRequestTypedDict",
|
681
|
+
"GetRetrieverStagesV1RetrieversStagesGetRequest",
|
682
|
+
"GetRetrieverStagesV1RetrieversStagesGetRequestTypedDict",
|
683
|
+
"GetRetrieverV1RetrieversRetrieversRetrieverIDGetRequest",
|
684
|
+
"GetRetrieverV1RetrieversRetrieversRetrieverIDGetRequestTypedDict",
|
612
685
|
"GetTaskV1TasksTaskIDGetRequest",
|
613
686
|
"GetTaskV1TasksTaskIDGetRequestTypedDict",
|
614
|
-
"
|
615
|
-
"
|
616
|
-
"GetTaxonomyV1EntitiesTaxonomiesTaxonomyGetRequest",
|
617
|
-
"GetTaxonomyV1EntitiesTaxonomiesTaxonomyGetRequestTypedDict",
|
687
|
+
"GetUsageRequestModel",
|
688
|
+
"GetUsageRequestModelTypedDict",
|
618
689
|
"GetUserV1OrganizationsUsersUserEmailGetRequest",
|
619
690
|
"GetUserV1OrganizationsUsersUserEmailGetRequestTypedDict",
|
620
|
-
"
|
621
|
-
"
|
622
|
-
"GroupByOptionsAssetTypedDict",
|
623
|
-
"GroupByOptionsTypedDict",
|
624
|
-
"GroupedAssetData",
|
625
|
-
"GroupedAssetDataTypedDict",
|
691
|
+
"HDBSCANParameters",
|
692
|
+
"HDBSCANParametersTypedDict",
|
626
693
|
"HTTPValidationError",
|
627
694
|
"HTTPValidationErrorData",
|
628
695
|
"HealthCheckResponse",
|
629
696
|
"HealthCheckResponseTypedDict",
|
630
|
-
"
|
631
|
-
"
|
632
|
-
"
|
633
|
-
"
|
634
|
-
"
|
635
|
-
"
|
636
|
-
"ImageReadSettings",
|
637
|
-
"ImageReadSettingsJSONOutput",
|
638
|
-
"ImageReadSettingsJSONOutputTypedDict",
|
639
|
-
"ImageReadSettingsTypedDict",
|
640
|
-
"ImageSettings",
|
641
|
-
"ImageSettingsTypedDict",
|
642
|
-
"IngestImageURLV1IngestImagesURLPostRequest",
|
643
|
-
"IngestImageURLV1IngestImagesURLPostRequestTypedDict",
|
644
|
-
"IngestTextV1IngestTextPostRequest",
|
645
|
-
"IngestTextV1IngestTextPostRequestTypedDict",
|
646
|
-
"IngestVideoURLV1IngestVideosURLPostRequest",
|
647
|
-
"IngestVideoURLV1IngestVideosURLPostRequestTypedDict",
|
648
|
-
"InputType",
|
697
|
+
"Index",
|
698
|
+
"IndexTypedDict",
|
699
|
+
"InputSchema",
|
700
|
+
"InputSchemaTypedDict",
|
701
|
+
"Inputs",
|
702
|
+
"InputsTypedDict",
|
649
703
|
"IntegerIndexParams",
|
650
704
|
"IntegerIndexParamsTypedDict",
|
651
|
-
"
|
652
|
-
"
|
653
|
-
"
|
654
|
-
"
|
655
|
-
"
|
656
|
-
"
|
657
|
-
"
|
658
|
-
"
|
659
|
-
"
|
660
|
-
"
|
661
|
-
"JSONVideoOutputSettingsResponseShapeTypedDict",
|
662
|
-
"JSONVideoOutputSettingsTypedDict",
|
705
|
+
"InteractionResponse",
|
706
|
+
"InteractionResponseMetadata",
|
707
|
+
"InteractionResponseMetadataTypedDict",
|
708
|
+
"InteractionResponseTypedDict",
|
709
|
+
"InteractionType",
|
710
|
+
"InvalidateCacheV1CollectionsCacheInvalidatePostRequest",
|
711
|
+
"InvalidateCacheV1CollectionsCacheInvalidatePostRequestTypedDict",
|
712
|
+
"InvalidationEvent",
|
713
|
+
"InvalidationEventTypedDict",
|
714
|
+
"InvalidationStrategy",
|
663
715
|
"KeywordIndexParams",
|
664
716
|
"KeywordIndexParamsTypedDict",
|
665
717
|
"KillTaskV1TasksTaskIDDeleteRequest",
|
666
718
|
"KillTaskV1TasksTaskIDDeleteRequestTypedDict",
|
667
719
|
"ListActiveTasksV1TasksGetRequest",
|
668
720
|
"ListActiveTasksV1TasksGetRequestTypedDict",
|
669
|
-
"
|
670
|
-
"
|
671
|
-
"
|
672
|
-
"
|
673
|
-
"
|
674
|
-
"
|
675
|
-
"
|
676
|
-
"
|
677
|
-
"
|
678
|
-
"
|
679
|
-
"
|
680
|
-
"
|
681
|
-
"
|
682
|
-
"
|
683
|
-
"
|
684
|
-
"
|
685
|
-
"ListFeaturesRequest",
|
686
|
-
"ListFeaturesRequestTypedDict",
|
687
|
-
"ListFeaturesResponse",
|
688
|
-
"ListFeaturesResponseTypedDict",
|
689
|
-
"ListFeaturesV1FeaturesPostRequest",
|
690
|
-
"ListFeaturesV1FeaturesPostRequestTypedDict",
|
721
|
+
"ListBucketsRequest",
|
722
|
+
"ListBucketsRequestTypedDict",
|
723
|
+
"ListBucketsResponse",
|
724
|
+
"ListBucketsResponseTypedDict",
|
725
|
+
"ListBucketsV1BucketsPostRequest",
|
726
|
+
"ListBucketsV1BucketsPostRequestTypedDict",
|
727
|
+
"ListDocumentsV1CollectionsCollectionIdentifierDocumentsGetRequest",
|
728
|
+
"ListDocumentsV1CollectionsCollectionIdentifierDocumentsGetRequestTypedDict",
|
729
|
+
"ListInteractionsV1RetrieversInteractionsGetRequest",
|
730
|
+
"ListInteractionsV1RetrieversInteractionsGetRequestTypedDict",
|
731
|
+
"ListObjectsRequest",
|
732
|
+
"ListObjectsRequestTypedDict",
|
733
|
+
"ListObjectsResponse",
|
734
|
+
"ListObjectsResponseTypedDict",
|
735
|
+
"ListObjectsV1BucketsBucketIdentifierObjectsPostRequest",
|
736
|
+
"ListObjectsV1BucketsBucketIdentifierObjectsPostRequestTypedDict",
|
691
737
|
"ListTasksResponse",
|
692
738
|
"ListTasksResponseTypedDict",
|
693
|
-
"ListTaxonomiesResponse",
|
694
|
-
"ListTaxonomiesResponseTypedDict",
|
695
|
-
"ListTaxonomiesV1EntitiesTaxonomiesGetRequest",
|
696
|
-
"ListTaxonomiesV1EntitiesTaxonomiesGetRequestTypedDict",
|
697
739
|
"Loc",
|
698
740
|
"LocTypedDict",
|
699
|
-
"
|
700
|
-
"
|
701
|
-
"
|
702
|
-
"
|
741
|
+
"LogicalOperatorInput",
|
742
|
+
"LogicalOperatorInputTypedDict",
|
743
|
+
"LogicalOperatorOutput",
|
744
|
+
"LogicalOperatorOutputAND",
|
745
|
+
"LogicalOperatorOutputANDTypedDict",
|
746
|
+
"LogicalOperatorOutputNOT",
|
747
|
+
"LogicalOperatorOutputNOTTypedDict",
|
748
|
+
"LogicalOperatorOutputOR",
|
749
|
+
"LogicalOperatorOutputORTypedDict",
|
750
|
+
"LogicalOperatorOutputTypedDict",
|
703
751
|
"Metadata",
|
704
752
|
"MetadataTypedDict",
|
705
|
-
"
|
706
|
-
"
|
707
|
-
"ModelDetails",
|
708
|
-
"ModelDetailsTypedDict",
|
753
|
+
"MultiVectorIndex",
|
754
|
+
"MultiVectorIndexTypedDict",
|
709
755
|
"NamespaceResponse",
|
710
756
|
"NamespaceResponseTypedDict",
|
711
|
-
"
|
712
|
-
"
|
713
|
-
"
|
714
|
-
"
|
715
|
-
"
|
716
|
-
"
|
717
|
-
"
|
757
|
+
"NamespaceUsage",
|
758
|
+
"NamespaceUsageTypedDict",
|
759
|
+
"NamingMethod",
|
760
|
+
"Not",
|
761
|
+
"NotTypedDict",
|
762
|
+
"ObjectResponse",
|
763
|
+
"ObjectResponseMetadata",
|
764
|
+
"ObjectResponseMetadataTypedDict",
|
765
|
+
"ObjectResponseTypedDict",
|
718
766
|
"Or",
|
719
767
|
"OrTypedDict",
|
720
768
|
"OrganizationModel",
|
721
769
|
"OrganizationModelMetadata",
|
722
770
|
"OrganizationModelMetadataTypedDict",
|
723
771
|
"OrganizationModelTypedDict",
|
724
|
-
"
|
725
|
-
"
|
726
|
-
"
|
727
|
-
"
|
772
|
+
"OutputSchema",
|
773
|
+
"OutputSchemaTypedDict",
|
774
|
+
"PaginationResponse",
|
775
|
+
"PaginationResponseTypedDict",
|
776
|
+
"ParameterSchema",
|
777
|
+
"ParameterSchemaTypedDict",
|
778
|
+
"Parameters",
|
779
|
+
"ParametersTypedDict",
|
728
780
|
"PayloadIndexConfig",
|
729
781
|
"PayloadIndexConfigTypedDict",
|
730
|
-
"PayloadIndexType",
|
731
|
-
"PayloadIndexTypeTypedDict",
|
732
782
|
"PayloadSchemaType",
|
733
783
|
"Permission",
|
734
|
-
"
|
735
|
-
"
|
736
|
-
"
|
737
|
-
"
|
738
|
-
"
|
739
|
-
"
|
740
|
-
"
|
741
|
-
"
|
742
|
-
"
|
743
|
-
"
|
744
|
-
"
|
745
|
-
"
|
746
|
-
"
|
747
|
-
"
|
748
|
-
"
|
749
|
-
"
|
750
|
-
"
|
751
|
-
"
|
752
|
-
"
|
753
|
-
"
|
754
|
-
"
|
755
|
-
"
|
756
|
-
"
|
757
|
-
"
|
758
|
-
"
|
759
|
-
"
|
760
|
-
"
|
761
|
-
"SearchModelSearchQueryTypedDict",
|
762
|
-
"SearchRequestFeatures",
|
763
|
-
"SearchRequestFeaturesTypedDict",
|
784
|
+
"Plan",
|
785
|
+
"PlanTypedDict",
|
786
|
+
"RecomputeStrategy",
|
787
|
+
"RequestBody",
|
788
|
+
"RequestBodyTypedDict",
|
789
|
+
"ResourceTotals",
|
790
|
+
"ResourceTotalsTypedDict",
|
791
|
+
"Results",
|
792
|
+
"ResultsTypedDict",
|
793
|
+
"RetrieverBinding",
|
794
|
+
"RetrieverBindingTypedDict",
|
795
|
+
"RetrieverCacheConfig",
|
796
|
+
"RetrieverCacheConfigTypedDict",
|
797
|
+
"RetrieverModel",
|
798
|
+
"RetrieverModelMetadata",
|
799
|
+
"RetrieverModelMetadataTypedDict",
|
800
|
+
"RetrieverModelTypedDict",
|
801
|
+
"RetrieverQueryRequest",
|
802
|
+
"RetrieverQueryRequestInputs",
|
803
|
+
"RetrieverQueryRequestInputsTypedDict",
|
804
|
+
"RetrieverQueryRequestTypedDict",
|
805
|
+
"RetrieverResponse",
|
806
|
+
"RetrieverResponseTypedDict",
|
807
|
+
"SearchInteraction",
|
808
|
+
"SearchInteractionMetadata",
|
809
|
+
"SearchInteractionMetadataTypedDict",
|
810
|
+
"SearchInteractionTypedDict",
|
764
811
|
"Security",
|
765
812
|
"SecurityTypedDict",
|
813
|
+
"SingleLineageEntry",
|
814
|
+
"SingleLineageEntryTypedDict",
|
815
|
+
"SortDirection",
|
766
816
|
"SortOption",
|
767
817
|
"SortOptionTypedDict",
|
768
|
-
"
|
769
|
-
"
|
818
|
+
"SourceConfigInput",
|
819
|
+
"SourceConfigInputTypedDict",
|
820
|
+
"SourceConfigOutput",
|
821
|
+
"SourceConfigOutputTypedDict",
|
822
|
+
"SourceType",
|
823
|
+
"StageConfigInput",
|
824
|
+
"StageConfigInputParameters",
|
825
|
+
"StageConfigInputParametersTypedDict",
|
826
|
+
"StageConfigInputTypedDict",
|
827
|
+
"StageConfigOutput",
|
828
|
+
"StageConfigOutputParameters",
|
829
|
+
"StageConfigOutputParametersTypedDict",
|
830
|
+
"StageConfigOutputTypedDict",
|
831
|
+
"StageDefinition",
|
832
|
+
"StageDefinitionDefaultParameters",
|
833
|
+
"StageDefinitionDefaultParametersTypedDict",
|
834
|
+
"StageDefinitionTypedDict",
|
835
|
+
"StageResponse",
|
836
|
+
"StageResponseTypedDict",
|
770
837
|
"TaskResponse",
|
771
838
|
"TaskResponseTypedDict",
|
772
839
|
"TaskStatus",
|
773
|
-
"
|
774
|
-
"
|
775
|
-
"
|
776
|
-
"
|
777
|
-
"TaxonomyModel",
|
778
|
-
"TaxonomyModelTypedDict",
|
779
|
-
"TaxonomyNode",
|
780
|
-
"TaxonomyNodeCreate",
|
781
|
-
"TaxonomyNodeCreateTypedDict",
|
782
|
-
"TaxonomyNodeTypedDict",
|
783
|
-
"TaxonomyUpdate",
|
784
|
-
"TaxonomyUpdateTypedDict",
|
840
|
+
"TaxonomyApplicationConfig",
|
841
|
+
"TaxonomyApplicationConfigTypedDict",
|
842
|
+
"TaxonomyConfig",
|
843
|
+
"TaxonomyConfigTypedDict",
|
785
844
|
"TextIndexParams",
|
786
845
|
"TextIndexParamsTypedDict",
|
787
|
-
"
|
788
|
-
"
|
846
|
+
"TimeseriesDataPoint",
|
847
|
+
"TimeseriesDataPointTypedDict",
|
848
|
+
"TimeseriesUsage",
|
849
|
+
"TimeseriesUsageTypedDict",
|
789
850
|
"TokenizerType",
|
790
851
|
"Type",
|
791
852
|
"UUIDIndexParams",
|
792
853
|
"UUIDIndexParamsTypedDict",
|
793
854
|
"UpdateAPIKeyV1OrganizationsUsersUserEmailAPIKeysKeyNamePatchRequest",
|
794
855
|
"UpdateAPIKeyV1OrganizationsUsersUserEmailAPIKeysKeyNamePatchRequestTypedDict",
|
795
|
-
"
|
796
|
-
"
|
797
|
-
"
|
798
|
-
"
|
799
|
-
"UpdateCollectionV1CollectionsCollectionPutRequest",
|
800
|
-
"UpdateCollectionV1CollectionsCollectionPutRequestTypedDict",
|
856
|
+
"UpdateBucketV1BucketsBucketIdentifierPutRequest",
|
857
|
+
"UpdateBucketV1BucketsBucketIdentifierPutRequestTypedDict",
|
858
|
+
"UpdateDocumentV1CollectionsCollectionIdentifierDocumentsDocumentIDPutRequest",
|
859
|
+
"UpdateDocumentV1CollectionsCollectionIdentifierDocumentsDocumentIDPutRequestTypedDict",
|
801
860
|
"UpdateNamespaceRequest",
|
802
861
|
"UpdateNamespaceRequestTypedDict",
|
803
862
|
"UpdateNamespaceV1NamespacesNamespacePutRequest",
|
804
863
|
"UpdateNamespaceV1NamespacesNamespacePutRequestTypedDict",
|
805
|
-
"
|
806
|
-
"
|
807
|
-
"
|
808
|
-
"
|
809
|
-
"
|
810
|
-
"
|
864
|
+
"UpdateObjectRequest",
|
865
|
+
"UpdateObjectRequestMetadata",
|
866
|
+
"UpdateObjectRequestMetadataTypedDict",
|
867
|
+
"UpdateObjectRequestTypedDict",
|
868
|
+
"UpdateObjectV1BucketsBucketIdentifierObjectsObjectIdentifierPutRequest",
|
869
|
+
"UpdateObjectV1BucketsBucketIdentifierObjectsObjectIdentifierPutRequestTypedDict",
|
870
|
+
"UsageResponse",
|
871
|
+
"UsageResponseTypedDict",
|
872
|
+
"UsageSummary",
|
873
|
+
"UsageSummaryTypedDict",
|
874
|
+
"UsageTimeRange",
|
811
875
|
"UserModelInput",
|
812
876
|
"UserModelInputMetadata",
|
813
877
|
"UserModelInputMetadataTypedDict",
|
@@ -818,20 +882,11 @@ __all__ = [
|
|
818
882
|
"UserModelOutputTypedDict",
|
819
883
|
"ValidationError",
|
820
884
|
"ValidationErrorTypedDict",
|
821
|
-
"
|
885
|
+
"VectorBasedConfig",
|
886
|
+
"VectorBasedConfigTypedDict",
|
887
|
+
"VectorIndex",
|
888
|
+
"VectorIndexDefinition",
|
889
|
+
"VectorIndexDefinitionTypedDict",
|
890
|
+
"VectorIndexTypedDict",
|
822
891
|
"VectorType",
|
823
|
-
"VideoDescribeSettings",
|
824
|
-
"VideoDescribeSettingsJSONOutput",
|
825
|
-
"VideoDescribeSettingsJSONOutputTypedDict",
|
826
|
-
"VideoDescribeSettingsTypedDict",
|
827
|
-
"VideoDetectSettings",
|
828
|
-
"VideoDetectSettingsTypedDict",
|
829
|
-
"VideoReadSettings",
|
830
|
-
"VideoReadSettingsTypedDict",
|
831
|
-
"VideoSettings",
|
832
|
-
"VideoSettingsTypedDict",
|
833
|
-
"VideoTranscriptionSettings",
|
834
|
-
"VideoTranscriptionSettingsJSONOutput",
|
835
|
-
"VideoTranscriptionSettingsJSONOutputTypedDict",
|
836
|
-
"VideoTranscriptionSettingsTypedDict",
|
837
892
|
]
|