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