abacusai 0.71.0__tar.gz → 0.72.0__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.
Potentially problematic release.
This version of abacusai might be problematic. Click here for more details.
- {abacusai-0.71.0/abacusai.egg-info → abacusai-0.72.0}/PKG-INFO +1 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/__init__.py +1 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/api_class/__init__.py +1 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/api_class/enums.py +0 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/api_class/model.py +2 -2
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/api_class/vector_store.py +1 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/client.py +15 -12
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/document_retriever.py +3 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/project.py +3 -3
- abacusai-0.72.0/abacusai/public.pem +5 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/vector_store.py +2 -2
- {abacusai-0.71.0 → abacusai-0.72.0/abacusai.egg-info}/PKG-INFO +1 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai.egg-info/SOURCES.txt +26 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_class/enums/index.rst.txt +35 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_class/index.rst.txt +232 -130
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_class/model/index.rst.txt +105 -130
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_class/project/index.rst.txt +1 -1
- abacusai-0.72.0/docs/_sources/autoapi/abacusai/api_class/vector_store/index.rst.txt +46 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/client/index.rst.txt +143 -126
- abacusai-0.72.0/docs/_sources/autoapi/abacusai/data_metrics/index.rst.txt +50 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/dataset/index.rst.txt +0 -24
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/dataset_version/index.rst.txt +15 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/deployment/index.rst.txt +22 -0
- abacusai-0.72.0/docs/_sources/autoapi/abacusai/deployment_conversation/index.rst.txt +71 -0
- abacusai-0.72.0/docs/_sources/autoapi/abacusai/deployment_conversation_event/index.rst.txt +52 -0
- abacusai-0.72.0/docs/_sources/autoapi/abacusai/document_retriever/index.rst.txt +141 -0
- abacusai-0.72.0/docs/_sources/autoapi/abacusai/document_retriever_config/index.rst.txt +48 -0
- abacusai-0.72.0/docs/_sources/autoapi/abacusai/document_retriever_lookup_result/index.rst.txt +46 -0
- abacusai-0.72.0/docs/_sources/autoapi/abacusai/document_retriever_version/index.rst.txt +95 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_group/index.rst.txt +0 -10
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_group_version/index.rst.txt +15 -0
- abacusai-0.72.0/docs/_sources/autoapi/abacusai/feature_mapping/index.rst.txt +46 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/index.rst.txt +323 -259
- abacusai-0.72.0/docs/_sources/autoapi/abacusai/inferred_feature_mappings/index.rst.txt +46 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model/index.rst.txt +8 -2
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_version/index.rst.txt +3 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/pipeline/index.rst.txt +6 -2
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/pipeline_step_version/index.rst.txt +11 -0
- abacusai-0.72.0/docs/_sources/autoapi/abacusai/pipeline_step_version_logs/index.rst.txt +50 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/pipeline_version/index.rst.txt +11 -0
- abacusai-0.72.0/docs/_sources/autoapi/abacusai/pipeline_version_logs/index.rst.txt +44 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/prediction_client/index.rst.txt +4 -2
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/project/index.rst.txt +16 -66
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/vector_store/index.rst.txt +6 -2
- abacusai-0.72.0/docs/_sources/autoapi/abacusai/vector_store_config/index.rst.txt +48 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/algorithm/index.html +10 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/annotation/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/annotation_config/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/annotation_entry/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/annotations_status/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/api_class/enums/index.html +36 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/api_class/index.html +318 -156
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/api_class/model/index.html +164 -147
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/api_class/project/index.html +2 -2
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/api_class/refresh/index.html +2 -2
- abacusai-0.72.0/docs/autoapi/abacusai/api_class/vector_store/index.html +166 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/api_client_utils/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/api_endpoint/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/api_key/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/application_connector/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/batch_prediction/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/batch_prediction_version/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/categorical_range_violation/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/chat_message/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/chat_session/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/client/index.html +193 -167
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/code_source/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/concatenation_config/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/cryptography/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/custom_loss_function/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/custom_metric/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/custom_metric_version/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/custom_train_function_info/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/data_consistency_duplication/index.html +10 -3
- abacusai-0.72.0/docs/autoapi/abacusai/data_metrics/index.html +322 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/data_prep_logs/index.html +10 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/data_quality_results/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/database_connector/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/dataset/index.html +8 -33
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/dataset_column/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/dataset_version/index.html +29 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/deployment/index.html +42 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/deployment_auth_token/index.html +10 -3
- abacusai-0.72.0/docs/autoapi/abacusai/deployment_conversation/index.html +351 -0
- abacusai-0.72.0/docs/autoapi/abacusai/deployment_conversation_event/index.html +323 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/document/index.html +10 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/document_annotation/index.html +8 -1
- abacusai-0.72.0/docs/autoapi/abacusai/document_retriever/index.html +462 -0
- abacusai-0.72.0/docs/autoapi/abacusai/document_retriever_config/index.html +325 -0
- abacusai-0.72.0/docs/autoapi/abacusai/document_retriever_lookup_result/index.html +324 -0
- abacusai-0.72.0/docs/autoapi/abacusai/document_retriever_version/index.html +394 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/document_store/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/document_store_import/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/drift_distribution/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/drift_distributions/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/eda/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/eda_chart_description/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/eda_collinearity/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/eda_data_consistency/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/eda_feature_association/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/eda_feature_collinearity/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/eda_forecasting_analysis/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/eda_version/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/embedding_feature_drift_distribution/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/execute_feature_group_operation/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_distribution/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_drift_summary/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_group/index.html +8 -15
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_group_export/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_group_export_config/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_group_export_download_url/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_group_lineage/index.html +10 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_group_refresh_export_config/index.html +10 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_group_template/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_group_template_variable_options/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_group_version/index.html +29 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_importance/index.html +10 -3
- abacusai-0.72.0/docs/autoapi/abacusai/feature_mapping/index.html +320 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_record/index.html +10 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/file_connector/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/file_connector_instructions/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/file_connector_verification/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/forecasting_analysis_graph_data/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/function_logs/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/generated_pit_feature_config_option/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/graph_dashboard/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/index.html +446 -322
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/indexing_config/index.html +10 -3
- abacusai-0.72.0/docs/autoapi/abacusai/inferred_feature_mappings/index.html +320 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/item_statistics/index.html +10 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/llm_code_block/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/llm_input/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/llm_parameters/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/llm_response/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model/index.html +13 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_artifacts_export/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_blueprint_export/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_blueprint_stage/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_location/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_metrics/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_monitor/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_monitor_org_summary/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_monitor_summary/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_monitor_summary_from_org/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_monitor_version/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_monitor_version_metric_data/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_training_type_for_deployment/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_upload/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/model_version/index.html +10 -2
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/modification_lock_info/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/module/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/monitor_alert/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/monitor_alert_version/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/natural_language_explanation/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/nested_feature/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/null_violation/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/organization_group/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/organization_search_result/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/pipeline/index.html +12 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/pipeline_reference/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/pipeline_step/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/pipeline_step_version/index.html +27 -3
- abacusai-0.72.0/docs/autoapi/abacusai/pipeline_step_version_logs/index.html +322 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/pipeline_step_version_reference/index.html +10 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/pipeline_version/index.html +27 -3
- abacusai-0.72.0/docs/autoapi/abacusai/pipeline_version_logs/index.html +319 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/point_in_time_feature/index.html +10 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/point_in_time_group/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/point_in_time_group_feature/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/prediction_client/index.html +11 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/prediction_dataset/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/prediction_feature_group/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/prediction_input/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/prediction_metric/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/prediction_metric_version/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/problem_type/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/project/index.html +21 -91
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/project_config/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/project_dataset/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/project_validation/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/python_function/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/python_function_validator/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/python_plot_function/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/range_violation/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/refresh_pipeline_run/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/refresh_policy/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/refresh_schedule/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/resolved_feature_group_template/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/return_class/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/schema/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/streaming_auth_token/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/streaming_client/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/streaming_connector/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/training_config_options/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/type_violation/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/upload/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/upload_part/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/use_case/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/use_case_requirements/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/user/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/user_exception/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/vector_store/index.html +14 -5
- abacusai-0.72.0/docs/autoapi/abacusai/vector_store_config/index.html +321 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/vector_store_lookup_result/index.html +10 -3
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/vector_store_version/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/webhook/index.html +8 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/genindex.html +496 -232
- abacusai-0.72.0/docs/objects.inv +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/py-modindex.html +45 -5
- abacusai-0.72.0/docs/searchindex.js +1 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/setup.py +1 -1
- abacusai-0.71.0/abacusai/public.pem +0 -5
- abacusai-0.71.0/docs/objects.inv +0 -0
- abacusai-0.71.0/docs/searchindex.js +0 -1
- {abacusai-0.71.0 → abacusai-0.72.0}/.gitignore +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/LICENSE +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/README.md +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/algorithm.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/annotation.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/annotation_config.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/annotation_entry.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/annotations_status.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/api_class/abstract.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/api_class/dataset.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/api_class/feature_group.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/api_class/project.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/api_class/python_functions.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/api_class/refresh.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/api_client_utils.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/api_endpoint.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/api_key.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/application_connector.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/batch_prediction.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/batch_prediction_version.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/categorical_range_violation.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/chat_message.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/chat_session.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/code_source.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/concatenation_config.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/cryptography.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/custom_loss_function.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/custom_metric.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/custom_metric_version.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/custom_train_function_info.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/data_consistency_duplication.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/data_metrics.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/data_prep_logs.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/data_quality_results.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/database_connector.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/dataset.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/dataset_column.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/dataset_version.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/deployment.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/deployment_auth_token.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/deployment_conversation.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/deployment_conversation_event.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/document.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/document_annotation.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/document_retriever_config.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/document_retriever_lookup_result.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/document_retriever_version.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/document_store.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/document_store_import.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/drift_distribution.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/drift_distributions.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/eda.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/eda_chart_description.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/eda_collinearity.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/eda_data_consistency.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/eda_feature_association.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/eda_feature_collinearity.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/eda_forecasting_analysis.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/eda_version.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/embedding_feature_drift_distribution.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/execute_feature_group_operation.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_distribution.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_drift_summary.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_group.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_group_export.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_group_export_config.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_group_export_download_url.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_group_lineage.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_group_refresh_export_config.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_group_template.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_group_template_variable_options.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_group_version.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_importance.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_mapping.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/feature_record.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/file_connector.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/file_connector_instructions.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/file_connector_verification.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/forecasting_analysis_graph_data.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/function_logs.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/generated_pit_feature_config_option.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/graph_dashboard.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/indexing_config.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/inferred_feature_mappings.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/item_statistics.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/llm_code_block.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/llm_input.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/llm_parameters.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/llm_response.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_artifacts_export.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_blueprint_export.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_blueprint_stage.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_location.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_metrics.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_monitor.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_monitor_org_summary.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_monitor_summary.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_monitor_summary_from_org.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_monitor_version.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_monitor_version_metric_data.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_training_type_for_deployment.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_upload.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/model_version.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/modification_lock_info.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/module.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/monitor_alert.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/monitor_alert_version.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/natural_language_explanation.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/nested_feature.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/notebook_completion.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/notebook_template.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/null_violation.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/organization_group.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/organization_search_result.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/pipeline.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/pipeline_reference.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/pipeline_step.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/pipeline_step_version.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/pipeline_step_version_logs.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/pipeline_step_version_reference.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/pipeline_version.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/pipeline_version_logs.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/point_in_time_feature.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/point_in_time_group.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/point_in_time_group_feature.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/prediction_client.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/prediction_dataset.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/prediction_feature_group.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/prediction_input.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/prediction_metric.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/prediction_metric_version.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/problem_type.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/project_config.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/project_dataset.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/project_validation.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/python_function.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/python_function_validator.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/python_plot_function.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/range_violation.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/refresh_pipeline_run.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/refresh_policy.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/refresh_schedule.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/requirements.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/resolved_feature_group_template.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/return_class.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/schema.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/streaming_auth_token.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/streaming_client.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/streaming_connector.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/training_config_options.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/type_violation.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/upload.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/upload_part.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/use_case.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/use_case_requirements.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/user.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/user_exception.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/vector_store_config.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/vector_store_lookup_result.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/vector_store_version.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai/webhook.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai.egg-info/dependency_links.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai.egg-info/requires.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai.egg-info/top_level.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/abacusai.egg-info/zip-safe +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/.buildinfo +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/.nojekyll +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/algorithm/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/annotation/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/annotation_config/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/annotation_entry/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/annotations_status/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_class/abstract/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_class/dataset/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_class/feature_group/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_class/python_function_argument/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_class/python_functions/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_class/refresh/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_client_utils/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_endpoint/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_key/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/application_connector/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/batch_prediction/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/batch_prediction_version/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/categorical_range_violation/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/chat_bot_response/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/chat_message/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/chat_session/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/code_source/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/concatenation_config/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/cryptography/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/custom_loss_function/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/custom_metric/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/custom_metric_version/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/custom_train_function_info/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/data_consistency_duplication/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/data_filter/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/data_prep_logs/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/data_quality_results/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/database_connector/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/dataset_column/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/deployment_auth_token/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/document/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/document_annotation/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/document_store/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/document_store_import/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/drift_distribution/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/drift_distributions/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/eda/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/eda_chart_description/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/eda_collinearity/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/eda_data_consistency/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/eda_feature_association/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/eda_feature_collinearity/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/eda_forecasting_analysis/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/eda_leakage_detection/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/eda_version/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/embedding_feature_drift_distribution/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/execute_feature_group_operation/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/execute_fg_operation/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_distribution/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_drift_summary/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_group_export/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_group_export_config/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_group_export_download_url/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_group_lineage/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_group_metrics/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_group_refresh_export_config/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_group_template/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_group_template_variable_options/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_importance/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/feature_record/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/file_connector/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/file_connector_instructions/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/file_connector_verification/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/forecasting_analysis_graph_data/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/function_logs/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/generated_pit_feature_config_option/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/graph_dashboard/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/indexing_config/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/item_statistics/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/language_detection_prediction/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/leakage_duplication/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/llm_code_block/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/llm_input/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/llm_parameters/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/llm_response/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/llm_search_result/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_artifacts_export/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_blueprint_export/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_blueprint_stage/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_location/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_metrics/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_monitor/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_monitor_org_summary/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_monitor_summary/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_monitor_summary_from_org/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_monitor_version/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_monitor_version_metric_data/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_training_type_for_deployment/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/model_upload/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/modification_lock_info/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/module/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/monitor_alert/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/monitor_alert_version/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/natural_language_explanation/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/nested_feature/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/nlp_classification_prediction/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/nlp_sentiment_prediction/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/null_violation/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/organization_group/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/organization_search_result/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/pipeline_reference/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/pipeline_step/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/pipeline_step_version_reference/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/point_in_time_feature/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/point_in_time_group/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/point_in_time_group_feature/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/prediction_dataset/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/prediction_feature_group/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/prediction_input/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/prediction_metric/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/prediction_metric_version/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/pretrained_use_case/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/problem_type/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/project_config/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/project_dataset/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/project_validation/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/python_function/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/python_function_validator/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/python_plot_function/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/range_violation/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/refresh_pipeline_run/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/refresh_policy/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/refresh_schedule/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/resolved_feature_group_template/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/return_class/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/schema/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/streaming_auth_token/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/streaming_client/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/streaming_connector/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/training_config_options/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/type_violation/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/upload/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/upload_part/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/use_case/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/use_case_requirements/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/user/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/user_exception/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/vector_store_lookup_result/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/vector_store_version/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/webhook/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/index.rst.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/_sphinx_javascript_frameworks_compat.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/basic.css +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/badge_only.css +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/Roboto-Slab-Bold.woff +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/Roboto-Slab-Regular.woff +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/fontawesome-webfont.eot +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/fontawesome-webfont.svg +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/fontawesome-webfont.ttf +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/fontawesome-webfont.woff +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/fontawesome-webfont.woff2 +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/lato-bold-italic.woff +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/lato-bold-italic.woff2 +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/lato-bold.woff +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/lato-bold.woff2 +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/lato-normal-italic.woff +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/lato-normal-italic.woff2 +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/lato-normal.woff +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/fonts/lato-normal.woff2 +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/css/theme.css +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/doctools.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/documentation_options.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/file.png +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/graphviz.css +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/jquery-3.5.1.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/jquery-3.6.0.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/jquery.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/js/badge_only.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/js/html5shiv-printshiv.min.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/js/html5shiv.min.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/js/theme.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/language_data.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/minus.png +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/plus.png +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/pygments.css +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/searchtools.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/sphinx_highlight.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/underscore-1.13.1.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/_static/underscore.js +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/api_class/abstract/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/api_class/dataset/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/api_class/feature_group/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/api_class/python_function_argument/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/api_class/python_functions/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/chat_bot_response/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/data_filter/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/eda_leakage_detection/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/execute_fg_operation/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/feature_group_metrics/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/language_detection_prediction/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/leakage_duplication/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/llm_search_result/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/nlp_classification_prediction/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/nlp_sentiment_prediction/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/autoapi/abacusai/pretrained_use_case/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/index.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/docs/search.html +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/examples/fullscript.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/featurestore.md +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/requirements.txt +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/setup.cfg +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/sphinx/build_docs +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/sphinx/conf.py +0 -0
- {abacusai-0.71.0 → abacusai-0.72.0}/sphinx/index.rst +0 -0
|
@@ -407,13 +407,13 @@ class ChatLLMTrainingConfig(TrainingConfig):
|
|
|
407
407
|
Training config for the CHAT_LLM problem type
|
|
408
408
|
Args:
|
|
409
409
|
llm_name (str):
|
|
410
|
-
|
|
410
|
+
document_retrievers (List[str]): List of document retriever names to use for the feature stores this model was trained with.
|
|
411
411
|
num_completion_tokens (int): Default for maximum number of tokens for chat answers. Reducing this will get faster responses which are more succinct
|
|
412
412
|
system_message (str): The generative LLM system message
|
|
413
413
|
temperature (float): The generative LLM temperature
|
|
414
414
|
"""
|
|
415
415
|
llm_name: str = None
|
|
416
|
-
|
|
416
|
+
document_retrievers: List[str] = None
|
|
417
417
|
num_completion_tokens: int = None
|
|
418
418
|
system_message: str = None
|
|
419
419
|
temperature: float = None
|
|
@@ -15,7 +15,7 @@ class VectorStoreConfig(ApiClass):
|
|
|
15
15
|
"""
|
|
16
16
|
chunk_size: int = dataclasses.field(default=512)
|
|
17
17
|
chunk_overlap_fraction: float = dataclasses.field(default=0.1)
|
|
18
|
-
text_encoder: VectorStoreTextEncoder = dataclasses.field(default=VectorStoreTextEncoder.
|
|
18
|
+
text_encoder: VectorStoreTextEncoder = dataclasses.field(default=VectorStoreTextEncoder.E5)
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
@dataclasses.dataclass
|
|
@@ -216,7 +216,7 @@ class BaseApiClient:
|
|
|
216
216
|
client_options (ClientOptions): Optional API client configurations
|
|
217
217
|
skip_version_check (bool): If true, will skip checking the server's current API version on initializing the client
|
|
218
218
|
"""
|
|
219
|
-
client_version = '0.
|
|
219
|
+
client_version = '0.72.0'
|
|
220
220
|
|
|
221
221
|
def __init__(self, api_key: str = None, server: str = None, client_options: ClientOptions = None, skip_version_check: bool = False):
|
|
222
222
|
self.api_key = api_key
|
|
@@ -242,6 +242,8 @@ class BaseApiClient:
|
|
|
242
242
|
self.server = endpoint_info['apiEndpoint']
|
|
243
243
|
except Exception:
|
|
244
244
|
logging.error('Invalid API Key')
|
|
245
|
+
skip_version_check = skip_version_check or self.client_version.startswith(
|
|
246
|
+
'g')
|
|
245
247
|
if not skip_version_check:
|
|
246
248
|
try:
|
|
247
249
|
self.web_version = self._call_api('version', 'GET')
|
|
@@ -1989,16 +1991,16 @@ class ReadOnlyClient(BaseApiClient):
|
|
|
1989
1991
|
"""List all the document retrievers.
|
|
1990
1992
|
|
|
1991
1993
|
Args:
|
|
1992
|
-
project_id (str): The ID of project that the
|
|
1993
|
-
limit (int): The number of
|
|
1994
|
-
start_after_id (str): An offset parameter to exclude all
|
|
1994
|
+
project_id (str): The ID of project that the document retriever is created in.
|
|
1995
|
+
limit (int): The number of document retrievers to return.
|
|
1996
|
+
start_after_id (str): An offset parameter to exclude all document retrievers up to this specified ID.
|
|
1995
1997
|
|
|
1996
1998
|
Returns:
|
|
1997
1999
|
DocumentRetriever: All the document retrievers in the organization associated with the specified project."""
|
|
1998
2000
|
return self._call_api('listDocumentRetrievers', 'GET', query_params={'projectId': project_id, 'limit': limit, 'startAfterId': start_after_id}, parse_type=DocumentRetriever)
|
|
1999
2001
|
|
|
2000
2002
|
def describe_document_retriever(self, document_retriever_id: str) -> DocumentRetriever:
|
|
2001
|
-
"""Describe a
|
|
2003
|
+
"""Describe a Document Retriever.
|
|
2002
2004
|
|
|
2003
2005
|
Args:
|
|
2004
2006
|
document_retriever_id (str): A unique string identifier associated with the document retriever.
|
|
@@ -2023,7 +2025,7 @@ class ReadOnlyClient(BaseApiClient):
|
|
|
2023
2025
|
Args:
|
|
2024
2026
|
document_retriever_id (str): A unique string identifier associated with the document retriever.
|
|
2025
2027
|
limit (int): The number of vector store versions to retrieve.
|
|
2026
|
-
start_after_version (str): An offset parameter to exclude all
|
|
2028
|
+
start_after_version (str): An offset parameter to exclude all document retriever versions up to this specified one.
|
|
2027
2029
|
|
|
2028
2030
|
Returns:
|
|
2029
2031
|
DocumentRetrieverVersion: All the document retriever versions associated with the document retriever."""
|
|
@@ -4641,7 +4643,7 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
4641
4643
|
monitor_alert_id (str): The unique string identifier of the alert to delete."""
|
|
4642
4644
|
return self._call_api('deleteMonitorAlert', 'DELETE', query_params={'monitorAlertId': monitor_alert_id})
|
|
4643
4645
|
|
|
4644
|
-
def create_deployment(self, name: str = None, model_id: str = None, model_version: str = None, algorithm: str = None, feature_group_id: str = None, project_id: str = None, description: str = None, calls_per_second: int = None, auto_deploy: bool = True, start: bool = True, enable_batch_streaming_updates: bool = False, model_deployment_config: dict = None, deployment_config: dict = None) -> Deployment:
|
|
4646
|
+
def create_deployment(self, name: str = None, model_id: str = None, model_version: str = None, algorithm: str = None, additional_model_name: str = None, feature_group_id: str = None, project_id: str = None, description: str = None, calls_per_second: int = None, auto_deploy: bool = True, start: bool = True, enable_batch_streaming_updates: bool = False, model_deployment_config: dict = None, deployment_config: dict = None) -> Deployment:
|
|
4645
4647
|
"""Creates a deployment with the specified name and description for the specified model or feature group.
|
|
4646
4648
|
|
|
4647
4649
|
A Deployment makes the trained model or feature group available for prediction requests.
|
|
@@ -4652,6 +4654,7 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
4652
4654
|
model_id (str): The unique ID associated with the model.
|
|
4653
4655
|
model_version (str): The unique ID associated with the model version to deploy.
|
|
4654
4656
|
algorithm (str): The unique ID associated with the algorithm to deploy.
|
|
4657
|
+
additional_model_name (str): The unique name associated with the additional model to deploy.
|
|
4655
4658
|
feature_group_id (str): The unique ID associated with a feature group.
|
|
4656
4659
|
project_id (str): The unique ID associated with a project.
|
|
4657
4660
|
description (str): The description for the deployment.
|
|
@@ -4664,7 +4667,7 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
4664
4667
|
|
|
4665
4668
|
Returns:
|
|
4666
4669
|
Deployment: The new model or feature group deployment."""
|
|
4667
|
-
return self._call_api('createDeployment', 'POST', query_params={}, body={'name': name, 'modelId': model_id, 'modelVersion': model_version, 'algorithm': algorithm, 'featureGroupId': feature_group_id, 'projectId': project_id, 'description': description, 'callsPerSecond': calls_per_second, 'autoDeploy': auto_deploy, 'start': start, 'enableBatchStreamingUpdates': enable_batch_streaming_updates, 'modelDeploymentConfig': model_deployment_config, 'deploymentConfig': deployment_config}, parse_type=Deployment)
|
|
4670
|
+
return self._call_api('createDeployment', 'POST', query_params={}, body={'name': name, 'modelId': model_id, 'modelVersion': model_version, 'algorithm': algorithm, 'additionalModelName': additional_model_name, 'featureGroupId': feature_group_id, 'projectId': project_id, 'description': description, 'callsPerSecond': calls_per_second, 'autoDeploy': auto_deploy, 'start': start, 'enableBatchStreamingUpdates': enable_batch_streaming_updates, 'modelDeploymentConfig': model_deployment_config, 'deploymentConfig': deployment_config}, parse_type=Deployment)
|
|
4668
4671
|
|
|
4669
4672
|
def create_deployment_token(self, project_id: str, name: str = None) -> DeploymentAuthToken:
|
|
4670
4673
|
"""Creates a deployment token for the specified project.
|
|
@@ -6141,7 +6144,7 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
6141
6144
|
return self._call_api('getLLMParameters', 'POST', query_params={}, body={'prompt': prompt, 'systemMessage': system_message, 'llmName': llm_name, 'maxTokens': max_tokens}, parse_type=LlmParameters, timeout=300)
|
|
6142
6145
|
|
|
6143
6146
|
def create_document_retriever(self, project_id: str, name: str, feature_group_id: str, cluster_name: str = None, document_retriever_config: Union[dict, DocumentRetrieverConfig] = None) -> DocumentRetriever:
|
|
6144
|
-
"""Returns a
|
|
6147
|
+
"""Returns a document retriever that stores embeddings for document chunks in a feature group.
|
|
6145
6148
|
|
|
6146
6149
|
Document columns in the feature group are broken into chunks. For cases with multiple document columns, chunks from all columns are combined together to form a single chunk.
|
|
6147
6150
|
|
|
@@ -6162,7 +6165,7 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
6162
6165
|
|
|
6163
6166
|
Args:
|
|
6164
6167
|
document_retriever_id (str): The unique ID associated with the document retriever.
|
|
6165
|
-
name (str): The name group to update the
|
|
6168
|
+
name (str): The name group to update the document retriever with.
|
|
6166
6169
|
feature_group_id (str): The ID of the feature group to update the document retriever with.
|
|
6167
6170
|
document_retriever_config (DocumentRetrieverConfig): The configuration, including chunk_size and chunk_overlap_fraction, for document retrieval.
|
|
6168
6171
|
|
|
@@ -6181,10 +6184,10 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
6181
6184
|
return self._call_api('createDocumentRetrieverVersion', 'POST', query_params={}, body={'documentRetrieverId': document_retriever_id}, parse_type=DocumentRetrieverVersion)
|
|
6182
6185
|
|
|
6183
6186
|
def delete_document_retriever(self, vector_store_id: str):
|
|
6184
|
-
"""Delete a
|
|
6187
|
+
"""Delete a Document Retriever.
|
|
6185
6188
|
|
|
6186
6189
|
Args:
|
|
6187
|
-
vector_store_id (str): A unique string identifier associated with the
|
|
6190
|
+
vector_store_id (str): A unique string identifier associated with the document retriever."""
|
|
6188
6191
|
return self._call_api('deleteDocumentRetriever', 'DELETE', query_params={'vectorStoreId': vector_store_id})
|
|
6189
6192
|
|
|
6190
6193
|
def lookup_document_retriever(self, document_retriever_id: str, query: str, deployment_token: str, limit_results: int = None) -> DocumentRetrieverLookupResult:
|
|
@@ -46,7 +46,7 @@ class DocumentRetriever(AbstractApiClass):
|
|
|
46
46
|
Updates an existing document retriever.
|
|
47
47
|
|
|
48
48
|
Args:
|
|
49
|
-
name (str): The name group to update the
|
|
49
|
+
name (str): The name group to update the document retriever with.
|
|
50
50
|
feature_group_id (str): The ID of the feature group to update the document retriever with.
|
|
51
51
|
document_retriever_config (DocumentRetrieverConfig): The configuration, including chunk_size and chunk_overlap_fraction, for document retrieval.
|
|
52
52
|
|
|
@@ -79,7 +79,7 @@ class DocumentRetriever(AbstractApiClass):
|
|
|
79
79
|
|
|
80
80
|
def describe(self):
|
|
81
81
|
"""
|
|
82
|
-
Describe a
|
|
82
|
+
Describe a Document Retriever.
|
|
83
83
|
|
|
84
84
|
Args:
|
|
85
85
|
document_retriever_id (str): A unique string identifier associated with the document retriever.
|
|
@@ -95,7 +95,7 @@ class DocumentRetriever(AbstractApiClass):
|
|
|
95
95
|
|
|
96
96
|
Args:
|
|
97
97
|
limit (int): The number of vector store versions to retrieve.
|
|
98
|
-
start_after_version (str): An offset parameter to exclude all
|
|
98
|
+
start_after_version (str): An offset parameter to exclude all document retriever versions up to this specified one.
|
|
99
99
|
|
|
100
100
|
Returns:
|
|
101
101
|
DocumentRetrieverVersion: All the document retriever versions associated with the document retriever.
|
|
@@ -559,7 +559,7 @@ class Project(AbstractApiClass):
|
|
|
559
559
|
|
|
560
560
|
def create_document_retriever(self, name: str, feature_group_id: str, cluster_name: str = None, document_retriever_config: Union[dict, DocumentRetrieverConfig] = None):
|
|
561
561
|
"""
|
|
562
|
-
Returns a
|
|
562
|
+
Returns a document retriever that stores embeddings for document chunks in a feature group.
|
|
563
563
|
|
|
564
564
|
Document columns in the feature group are broken into chunks. For cases with multiple document columns, chunks from all columns are combined together to form a single chunk.
|
|
565
565
|
|
|
@@ -580,8 +580,8 @@ class Project(AbstractApiClass):
|
|
|
580
580
|
List all the document retrievers.
|
|
581
581
|
|
|
582
582
|
Args:
|
|
583
|
-
limit (int): The number of
|
|
584
|
-
start_after_id (str): An offset parameter to exclude all
|
|
583
|
+
limit (int): The number of document retrievers to return.
|
|
584
|
+
start_after_id (str): An offset parameter to exclude all document retrievers up to this specified ID.
|
|
585
585
|
|
|
586
586
|
Returns:
|
|
587
587
|
DocumentRetriever: All the document retrievers in the organization associated with the specified project.
|
|
@@ -41,10 +41,10 @@ class VectorStore(AbstractApiClass):
|
|
|
41
41
|
|
|
42
42
|
def delete_document_retriever(self):
|
|
43
43
|
"""
|
|
44
|
-
Delete a
|
|
44
|
+
Delete a Document Retriever.
|
|
45
45
|
|
|
46
46
|
Args:
|
|
47
|
-
vector_store_id (str): A unique string identifier associated with the
|
|
47
|
+
vector_store_id (str): A unique string identifier associated with the document retriever.
|
|
48
48
|
"""
|
|
49
49
|
return self.client.delete_document_retriever(self.vector_store_id)
|
|
50
50
|
|
|
@@ -206,6 +206,7 @@ docs/_sources/autoapi/abacusai/api_class/project/index.rst.txt
|
|
|
206
206
|
docs/_sources/autoapi/abacusai/api_class/python_function_argument/index.rst.txt
|
|
207
207
|
docs/_sources/autoapi/abacusai/api_class/python_functions/index.rst.txt
|
|
208
208
|
docs/_sources/autoapi/abacusai/api_class/refresh/index.rst.txt
|
|
209
|
+
docs/_sources/autoapi/abacusai/api_class/vector_store/index.rst.txt
|
|
209
210
|
docs/_sources/autoapi/abacusai/api_client_utils/index.rst.txt
|
|
210
211
|
docs/_sources/autoapi/abacusai/api_endpoint/index.rst.txt
|
|
211
212
|
docs/_sources/autoapi/abacusai/api_key/index.rst.txt
|
|
@@ -226,6 +227,7 @@ docs/_sources/autoapi/abacusai/custom_metric_version/index.rst.txt
|
|
|
226
227
|
docs/_sources/autoapi/abacusai/custom_train_function_info/index.rst.txt
|
|
227
228
|
docs/_sources/autoapi/abacusai/data_consistency_duplication/index.rst.txt
|
|
228
229
|
docs/_sources/autoapi/abacusai/data_filter/index.rst.txt
|
|
230
|
+
docs/_sources/autoapi/abacusai/data_metrics/index.rst.txt
|
|
229
231
|
docs/_sources/autoapi/abacusai/data_prep_logs/index.rst.txt
|
|
230
232
|
docs/_sources/autoapi/abacusai/data_quality_results/index.rst.txt
|
|
231
233
|
docs/_sources/autoapi/abacusai/database_connector/index.rst.txt
|
|
@@ -234,8 +236,14 @@ docs/_sources/autoapi/abacusai/dataset_column/index.rst.txt
|
|
|
234
236
|
docs/_sources/autoapi/abacusai/dataset_version/index.rst.txt
|
|
235
237
|
docs/_sources/autoapi/abacusai/deployment/index.rst.txt
|
|
236
238
|
docs/_sources/autoapi/abacusai/deployment_auth_token/index.rst.txt
|
|
239
|
+
docs/_sources/autoapi/abacusai/deployment_conversation/index.rst.txt
|
|
240
|
+
docs/_sources/autoapi/abacusai/deployment_conversation_event/index.rst.txt
|
|
237
241
|
docs/_sources/autoapi/abacusai/document/index.rst.txt
|
|
238
242
|
docs/_sources/autoapi/abacusai/document_annotation/index.rst.txt
|
|
243
|
+
docs/_sources/autoapi/abacusai/document_retriever/index.rst.txt
|
|
244
|
+
docs/_sources/autoapi/abacusai/document_retriever_config/index.rst.txt
|
|
245
|
+
docs/_sources/autoapi/abacusai/document_retriever_lookup_result/index.rst.txt
|
|
246
|
+
docs/_sources/autoapi/abacusai/document_retriever_version/index.rst.txt
|
|
239
247
|
docs/_sources/autoapi/abacusai/document_store/index.rst.txt
|
|
240
248
|
docs/_sources/autoapi/abacusai/document_store_import/index.rst.txt
|
|
241
249
|
docs/_sources/autoapi/abacusai/drift_distribution/index.rst.txt
|
|
@@ -266,6 +274,7 @@ docs/_sources/autoapi/abacusai/feature_group_template/index.rst.txt
|
|
|
266
274
|
docs/_sources/autoapi/abacusai/feature_group_template_variable_options/index.rst.txt
|
|
267
275
|
docs/_sources/autoapi/abacusai/feature_group_version/index.rst.txt
|
|
268
276
|
docs/_sources/autoapi/abacusai/feature_importance/index.rst.txt
|
|
277
|
+
docs/_sources/autoapi/abacusai/feature_mapping/index.rst.txt
|
|
269
278
|
docs/_sources/autoapi/abacusai/feature_record/index.rst.txt
|
|
270
279
|
docs/_sources/autoapi/abacusai/file_connector/index.rst.txt
|
|
271
280
|
docs/_sources/autoapi/abacusai/file_connector_instructions/index.rst.txt
|
|
@@ -275,6 +284,7 @@ docs/_sources/autoapi/abacusai/function_logs/index.rst.txt
|
|
|
275
284
|
docs/_sources/autoapi/abacusai/generated_pit_feature_config_option/index.rst.txt
|
|
276
285
|
docs/_sources/autoapi/abacusai/graph_dashboard/index.rst.txt
|
|
277
286
|
docs/_sources/autoapi/abacusai/indexing_config/index.rst.txt
|
|
287
|
+
docs/_sources/autoapi/abacusai/inferred_feature_mappings/index.rst.txt
|
|
278
288
|
docs/_sources/autoapi/abacusai/item_statistics/index.rst.txt
|
|
279
289
|
docs/_sources/autoapi/abacusai/language_detection_prediction/index.rst.txt
|
|
280
290
|
docs/_sources/autoapi/abacusai/leakage_duplication/index.rst.txt
|
|
@@ -313,8 +323,10 @@ docs/_sources/autoapi/abacusai/pipeline/index.rst.txt
|
|
|
313
323
|
docs/_sources/autoapi/abacusai/pipeline_reference/index.rst.txt
|
|
314
324
|
docs/_sources/autoapi/abacusai/pipeline_step/index.rst.txt
|
|
315
325
|
docs/_sources/autoapi/abacusai/pipeline_step_version/index.rst.txt
|
|
326
|
+
docs/_sources/autoapi/abacusai/pipeline_step_version_logs/index.rst.txt
|
|
316
327
|
docs/_sources/autoapi/abacusai/pipeline_step_version_reference/index.rst.txt
|
|
317
328
|
docs/_sources/autoapi/abacusai/pipeline_version/index.rst.txt
|
|
329
|
+
docs/_sources/autoapi/abacusai/pipeline_version_logs/index.rst.txt
|
|
318
330
|
docs/_sources/autoapi/abacusai/point_in_time_feature/index.rst.txt
|
|
319
331
|
docs/_sources/autoapi/abacusai/point_in_time_group/index.rst.txt
|
|
320
332
|
docs/_sources/autoapi/abacusai/point_in_time_group_feature/index.rst.txt
|
|
@@ -352,6 +364,7 @@ docs/_sources/autoapi/abacusai/use_case_requirements/index.rst.txt
|
|
|
352
364
|
docs/_sources/autoapi/abacusai/user/index.rst.txt
|
|
353
365
|
docs/_sources/autoapi/abacusai/user_exception/index.rst.txt
|
|
354
366
|
docs/_sources/autoapi/abacusai/vector_store/index.rst.txt
|
|
367
|
+
docs/_sources/autoapi/abacusai/vector_store_config/index.rst.txt
|
|
355
368
|
docs/_sources/autoapi/abacusai/vector_store_lookup_result/index.rst.txt
|
|
356
369
|
docs/_sources/autoapi/abacusai/vector_store_version/index.rst.txt
|
|
357
370
|
docs/_sources/autoapi/abacusai/webhook/index.rst.txt
|
|
@@ -411,6 +424,7 @@ docs/autoapi/abacusai/api_class/project/index.html
|
|
|
411
424
|
docs/autoapi/abacusai/api_class/python_function_argument/index.html
|
|
412
425
|
docs/autoapi/abacusai/api_class/python_functions/index.html
|
|
413
426
|
docs/autoapi/abacusai/api_class/refresh/index.html
|
|
427
|
+
docs/autoapi/abacusai/api_class/vector_store/index.html
|
|
414
428
|
docs/autoapi/abacusai/api_client_utils/index.html
|
|
415
429
|
docs/autoapi/abacusai/api_endpoint/index.html
|
|
416
430
|
docs/autoapi/abacusai/api_key/index.html
|
|
@@ -431,6 +445,7 @@ docs/autoapi/abacusai/custom_metric_version/index.html
|
|
|
431
445
|
docs/autoapi/abacusai/custom_train_function_info/index.html
|
|
432
446
|
docs/autoapi/abacusai/data_consistency_duplication/index.html
|
|
433
447
|
docs/autoapi/abacusai/data_filter/index.html
|
|
448
|
+
docs/autoapi/abacusai/data_metrics/index.html
|
|
434
449
|
docs/autoapi/abacusai/data_prep_logs/index.html
|
|
435
450
|
docs/autoapi/abacusai/data_quality_results/index.html
|
|
436
451
|
docs/autoapi/abacusai/database_connector/index.html
|
|
@@ -439,8 +454,14 @@ docs/autoapi/abacusai/dataset_column/index.html
|
|
|
439
454
|
docs/autoapi/abacusai/dataset_version/index.html
|
|
440
455
|
docs/autoapi/abacusai/deployment/index.html
|
|
441
456
|
docs/autoapi/abacusai/deployment_auth_token/index.html
|
|
457
|
+
docs/autoapi/abacusai/deployment_conversation/index.html
|
|
458
|
+
docs/autoapi/abacusai/deployment_conversation_event/index.html
|
|
442
459
|
docs/autoapi/abacusai/document/index.html
|
|
443
460
|
docs/autoapi/abacusai/document_annotation/index.html
|
|
461
|
+
docs/autoapi/abacusai/document_retriever/index.html
|
|
462
|
+
docs/autoapi/abacusai/document_retriever_config/index.html
|
|
463
|
+
docs/autoapi/abacusai/document_retriever_lookup_result/index.html
|
|
464
|
+
docs/autoapi/abacusai/document_retriever_version/index.html
|
|
444
465
|
docs/autoapi/abacusai/document_store/index.html
|
|
445
466
|
docs/autoapi/abacusai/document_store_import/index.html
|
|
446
467
|
docs/autoapi/abacusai/drift_distribution/index.html
|
|
@@ -471,6 +492,7 @@ docs/autoapi/abacusai/feature_group_template/index.html
|
|
|
471
492
|
docs/autoapi/abacusai/feature_group_template_variable_options/index.html
|
|
472
493
|
docs/autoapi/abacusai/feature_group_version/index.html
|
|
473
494
|
docs/autoapi/abacusai/feature_importance/index.html
|
|
495
|
+
docs/autoapi/abacusai/feature_mapping/index.html
|
|
474
496
|
docs/autoapi/abacusai/feature_record/index.html
|
|
475
497
|
docs/autoapi/abacusai/file_connector/index.html
|
|
476
498
|
docs/autoapi/abacusai/file_connector_instructions/index.html
|
|
@@ -480,6 +502,7 @@ docs/autoapi/abacusai/function_logs/index.html
|
|
|
480
502
|
docs/autoapi/abacusai/generated_pit_feature_config_option/index.html
|
|
481
503
|
docs/autoapi/abacusai/graph_dashboard/index.html
|
|
482
504
|
docs/autoapi/abacusai/indexing_config/index.html
|
|
505
|
+
docs/autoapi/abacusai/inferred_feature_mappings/index.html
|
|
483
506
|
docs/autoapi/abacusai/item_statistics/index.html
|
|
484
507
|
docs/autoapi/abacusai/language_detection_prediction/index.html
|
|
485
508
|
docs/autoapi/abacusai/leakage_duplication/index.html
|
|
@@ -518,8 +541,10 @@ docs/autoapi/abacusai/pipeline/index.html
|
|
|
518
541
|
docs/autoapi/abacusai/pipeline_reference/index.html
|
|
519
542
|
docs/autoapi/abacusai/pipeline_step/index.html
|
|
520
543
|
docs/autoapi/abacusai/pipeline_step_version/index.html
|
|
544
|
+
docs/autoapi/abacusai/pipeline_step_version_logs/index.html
|
|
521
545
|
docs/autoapi/abacusai/pipeline_step_version_reference/index.html
|
|
522
546
|
docs/autoapi/abacusai/pipeline_version/index.html
|
|
547
|
+
docs/autoapi/abacusai/pipeline_version_logs/index.html
|
|
523
548
|
docs/autoapi/abacusai/point_in_time_feature/index.html
|
|
524
549
|
docs/autoapi/abacusai/point_in_time_group/index.html
|
|
525
550
|
docs/autoapi/abacusai/point_in_time_group_feature/index.html
|
|
@@ -557,6 +582,7 @@ docs/autoapi/abacusai/use_case_requirements/index.html
|
|
|
557
582
|
docs/autoapi/abacusai/user/index.html
|
|
558
583
|
docs/autoapi/abacusai/user_exception/index.html
|
|
559
584
|
docs/autoapi/abacusai/vector_store/index.html
|
|
585
|
+
docs/autoapi/abacusai/vector_store_config/index.html
|
|
560
586
|
docs/autoapi/abacusai/vector_store_lookup_result/index.html
|
|
561
587
|
docs/autoapi/abacusai/vector_store_version/index.html
|
|
562
588
|
docs/autoapi/abacusai/webhook/index.html
|
{abacusai-0.71.0 → abacusai-0.72.0}/docs/_sources/autoapi/abacusai/api_class/enums/index.rst.txt
RENAMED
|
@@ -43,6 +43,7 @@ Classes
|
|
|
43
43
|
abacusai.api_class.enums.ClusteringImputationMethod
|
|
44
44
|
abacusai.api_class.enums.ConnectorType
|
|
45
45
|
abacusai.api_class.enums.PythonFunctionArgumentType
|
|
46
|
+
abacusai.api_class.enums.VectorStoreTextEncoder
|
|
46
47
|
|
|
47
48
|
|
|
48
49
|
|
|
@@ -114,6 +115,11 @@ Classes
|
|
|
114
115
|
|
|
115
116
|
|
|
116
117
|
|
|
118
|
+
.. py:attribute:: CHAT_LLM
|
|
119
|
+
:value: 'chat_llm'
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
117
123
|
.. py:attribute:: SENTENCE_BOUNDARY_DETECTION
|
|
118
124
|
:value: 'nlp_sentence_boundary_detection'
|
|
119
125
|
|
|
@@ -1281,3 +1287,32 @@ Classes
|
|
|
1281
1287
|
|
|
1282
1288
|
|
|
1283
1289
|
|
|
1290
|
+
.. py:class:: VectorStoreTextEncoder
|
|
1291
|
+
|
|
1292
|
+
Bases: :py:obj:`ApiEnum`
|
|
1293
|
+
|
|
1294
|
+
Generic enumeration.
|
|
1295
|
+
|
|
1296
|
+
Derive from this class to define new enumerations.
|
|
1297
|
+
|
|
1298
|
+
.. py:attribute:: OPENAI
|
|
1299
|
+
:value: 'OPENAI'
|
|
1300
|
+
|
|
1301
|
+
|
|
1302
|
+
|
|
1303
|
+
.. py:attribute:: E5
|
|
1304
|
+
:value: 'E5'
|
|
1305
|
+
|
|
1306
|
+
|
|
1307
|
+
|
|
1308
|
+
.. py:attribute:: E5_SMALL
|
|
1309
|
+
:value: 'E5_SMALL'
|
|
1310
|
+
|
|
1311
|
+
|
|
1312
|
+
|
|
1313
|
+
.. py:attribute:: SENTENCE_BERT
|
|
1314
|
+
:value: 'SENTENCE_BERT'
|
|
1315
|
+
|
|
1316
|
+
|
|
1317
|
+
|
|
1318
|
+
|