abacusai 0.79.0__tar.gz → 0.79.2__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.79.0/abacusai.egg-info → abacusai-0.79.2}/PKG-INFO +1 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/__init__.py +1 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/__init__.py +1 -0
- abacusai-0.79.2/abacusai/api_class/ai_agents.py +22 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/dataset.py +1 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/dataset_application_connector.py +23 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/enums.py +16 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/model.py +5 -4
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_endpoint.py +6 -4
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/chat_session.py +6 -4
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/client.py +76 -31
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_retriever.py +3 -2
- abacusai-0.79.2/abacusai/extracted_fields.py +35 -0
- abacusai-0.79.2/abacusai/llm_generated_code.py +32 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model.py +1 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_version.py +4 -3
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/project.py +6 -9
- abacusai-0.79.2/abacusai/public.pem +5 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/test_point_predictions.py +6 -4
- {abacusai-0.79.0 → abacusai-0.79.2/abacusai.egg-info}/PKG-INFO +1 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai.egg-info/SOURCES.txt +3 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/dataset/index.rst.txt +6 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/enums/index.rst.txt +41 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/index.rst.txt +162 -70
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/model/index.rst.txt +56 -70
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/monitor_alert/index.rst.txt +59 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/app_user_group/index.rst.txt +3 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/client/index.rst.txt +41 -8
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_row_process/index.rst.txt +7 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/finetuned_pretrained_model/index.rst.txt +11 -5
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/hosted_model_token/index.rst.txt +3 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/index.rst.txt +206 -79
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_version/index.rst.txt +11 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_client/index.rst.txt +3 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/dataset/index.html +5 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/enums/index.html +41 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/index.html +232 -132
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/model/index.html +59 -70
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/monitor_alert/index.html +66 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/app_user_group/index.html +2 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/client/index.html +49 -12
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_row_process/index.html +4 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/finetuned_pretrained_model/index.html +6 -3
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/hosted_model_token/index.html +2 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/index.html +280 -139
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_version/index.html +17 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_client/index.html +2 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/genindex.html +169 -17
- abacusai-0.79.2/docs/objects.inv +0 -0
- abacusai-0.79.2/docs/searchindex.js +1 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/setup.py +1 -1
- abacusai-0.79.0/abacusai/public.pem +0 -5
- abacusai-0.79.0/docs/objects.inv +0 -0
- abacusai-0.79.0/docs/searchindex.js +0 -1
- {abacusai-0.79.0 → abacusai-0.79.2}/.gitignore +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/LICENSE +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/README.md +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/abacus_api.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/agent.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/agent_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/ai_building_task.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/algorithm.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/annotation.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/annotation_config.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/annotation_document.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/annotation_entry.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/annotations_status.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/abstract.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/batch_prediction.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/blob_input.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/document_retriever.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/feature_group.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/monitor.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/monitor_alert.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/project.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/python_functions.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/refresh.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_client_utils.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_key.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/app_user_group.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/application_connector.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/batch_prediction.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/batch_prediction_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/batch_prediction_version_logs.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/categorical_range_violation.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/chat_message.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/code_source.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/concatenation_config.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/cpu_gpu_memory_specs.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/cryptography.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/custom_loss_function.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/custom_metric.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/custom_metric_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/custom_train_function_info.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/data_consistency_duplication.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/data_metrics.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/data_prep_logs.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/data_quality_results.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/database_connector.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/dataset.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/dataset_column.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/dataset_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/dataset_version_logs.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/deployment.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/deployment_auth_token.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/deployment_conversation.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/deployment_conversation_event.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/deployment_conversation_export.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_annotation.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_retriever_config.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_retriever_lookup_result.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_retriever_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_store.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_store_import.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/drift_distribution.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/drift_distributions.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_chart_description.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_collinearity.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_data_consistency.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_feature_association.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_feature_collinearity.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_forecasting_analysis.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/embedding_feature_drift_distribution.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/execute_feature_group_operation.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/external_application.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_distribution.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_drift_record.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_drift_summary.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_document.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_export.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_export_config.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_export_download_url.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_lineage.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_refresh_export_config.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_row.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_row_process.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_row_process_logs.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_row_process_summary.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_template.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_template_variable_options.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_importance.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_mapping.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_record.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/file_connector.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/file_connector_instructions.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/file_connector_verification.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/finetuned_pretrained_model.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/forecasting_analysis_graph_data.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/forecasting_monitor_item_analysis.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/forecasting_monitor_summary.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/function_logs.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/generated_pit_feature_config_option.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/graph_dashboard.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/holdout_analysis.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/holdout_analysis_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/hosted_model_token.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/indexing_config.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/inferred_feature_mappings.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/item_statistics.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/llm_code_block.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/llm_execution_preview.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/llm_execution_result.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/llm_input.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/llm_parameters.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/llm_response.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/memory_options.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_artifacts_export.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_blueprint_export.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_blueprint_stage.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_location.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_metrics.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_monitor.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_monitor_org_summary.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_monitor_summary.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_monitor_summary_from_org.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_monitor_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_monitor_version_metric_data.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_training_type_for_deployment.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_upload.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_version_feature_group_schema.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/modification_lock_info.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/module.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/monitor_alert.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/monitor_alert_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/natural_language_explanation.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/nested_feature.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/nested_feature_schema.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/notebook_completion.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/notebook_template.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/null_violation.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/organization_external_application_settings.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/organization_group.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/organization_search_result.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/organization_secret.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/page_data.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_reference.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_step.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_step_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_step_version_logs.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_step_version_reference.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_version_logs.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/point_in_time_feature.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/point_in_time_feature_info.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/point_in_time_group.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/point_in_time_group_feature.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_client.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_dataset.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_feature_group.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_input.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_metric.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_metric_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_operator.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_operator_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/problem_type.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/project_config.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/project_feature_group.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/project_feature_group_schema.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/project_feature_group_schema_version.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/project_validation.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/python_function.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/python_function_validator.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/python_plot_function.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/range_violation.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/refresh_pipeline_run.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/refresh_policy.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/refresh_schedule.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/requirements.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/resolved_feature_group_template.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/return_class.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/schema.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/streaming_auth_token.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/streaming_client.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/streaming_connector.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/streaming_row_count.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/streaming_sample_code.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/training_config_options.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/type_violation.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/upload.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/upload_part.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/use_case.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/use_case_requirements.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/user.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/user_exception.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/webhook.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai.egg-info/dependency_links.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai.egg-info/requires.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai.egg-info/top_level.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/abacusai.egg-info/zip-safe +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/.buildinfo +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/.nojekyll +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/abacus_api/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/agent/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/agent_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/ai_building_task/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/algorithm/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/annotation/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/annotation_config/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/annotation_document/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/annotation_entry/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/annotations_status/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/abstract/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/batch_prediction/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/blob_input/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/dataset_application_connector/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/document_retriever/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/feature_group/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/monitor/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/project/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/python_function_argument/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/python_functions/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/refresh/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/vector_store/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_client_utils/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_endpoint/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_key/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/application_connector/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/batch_prediction/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/batch_prediction_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/batch_prediction_version_logs/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/categorical_range_violation/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/chat_bot_response/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/chat_message/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/chat_session/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/code_source/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/concatenation_config/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/cpu_gpu_memory_specs/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/cryptography/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/custom_loss_function/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/custom_metric/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/custom_metric_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/custom_train_function_info/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/data_consistency_duplication/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/data_filter/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/data_metrics/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/data_prep_logs/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/data_quality_results/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/database_connector/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/dataset/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/dataset_column/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/dataset_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/dataset_version_logs/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/deployment/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/deployment_auth_token/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/deployment_conversation/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/deployment_conversation_event/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/deployment_conversation_export/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_annotation/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_retriever/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_retriever_config/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_retriever_lookup_result/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_retriever_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_store/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_store_import/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/drift_distribution/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/drift_distributions/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_chart_description/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_collinearity/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_data_consistency/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_feature_association/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_feature_collinearity/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_forecasting_analysis/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_leakage_detection/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/embedding_feature_drift_distribution/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/execute_feature_group_operation/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/execute_fg_operation/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/external_application/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_distribution/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_drift_record/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_drift_summary/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_document/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_export/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_export_config/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_export_download_url/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_lineage/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_metrics/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_refresh_export_config/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_row/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_row_process_logs/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_row_process_summary/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_template/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_template_variable_options/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_importance/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_mapping/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_record/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/file_connector/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/file_connector_instructions/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/file_connector_verification/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/forecasting_analysis_graph_data/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/forecasting_monitor_item_analysis/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/forecasting_monitor_summary/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/function_logs/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/generated_pit_feature_config_option/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/graph_dashboard/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/holdout_analysis/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/holdout_analysis_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/indexing_config/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/inferred_feature_mappings/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/item_statistics/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/language_detection_prediction/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/leakage_duplication/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_code_block/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_execution_preview/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_execution_result/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_input/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_parameters/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_response/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_search_result/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/memory_options/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_artifacts_export/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_blueprint_export/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_blueprint_stage/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_location/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_metrics/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_monitor/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_monitor_org_summary/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_monitor_summary/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_monitor_summary_from_org/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_monitor_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_monitor_version_metric_data/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_training_type_for_deployment/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_upload/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_version_feature_group_schema/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/modification_lock_info/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/module/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/monitor_alert/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/monitor_alert_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/natural_language_explanation/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/nested_feature/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/nested_feature_schema/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/nlp_classification_prediction/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/nlp_sentiment_prediction/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/null_violation/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/organization_external_application_settings/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/organization_group/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/organization_search_result/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/organization_secret/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/page_data/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_reference/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_step/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_step_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_step_version_logs/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_step_version_reference/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_version_logs/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/point_in_time_feature/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/point_in_time_feature_info/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/point_in_time_group/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/point_in_time_group_feature/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_dataset/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_feature_group/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_input/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_metric/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_metric_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_operator/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_operator_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pretrained_use_case/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/problem_type/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project_config/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project_dataset/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project_feature_group/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project_feature_group_schema/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project_feature_group_schema_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project_validation/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/python_function/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/python_function_validator/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/python_plot_function/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/range_violation/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/refresh_pipeline_run/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/refresh_policy/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/refresh_schedule/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/resolved_feature_group_template/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/return_class/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/schema/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/slack_connector_response/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/streaming_auth_token/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/streaming_client/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/streaming_connector/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/streaming_row_count/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/streaming_sample_code/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/test_point_predictions/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/training_config_options/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/type_violation/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/upload/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/upload_part/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/use_case/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/use_case_requirements/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/user/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/user_exception/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/vector_store/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/vector_store_config/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/vector_store_lookup_result/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/vector_store_version/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/webhook/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/index.rst.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/_sphinx_javascript_frameworks_compat.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/basic.css +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/badge_only.css +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/Roboto-Slab-Bold.woff +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/Roboto-Slab-Regular.woff +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/fontawesome-webfont.eot +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/fontawesome-webfont.svg +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/fontawesome-webfont.ttf +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/fontawesome-webfont.woff +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/fontawesome-webfont.woff2 +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-bold-italic.woff +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-bold-italic.woff2 +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-bold.woff +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-bold.woff2 +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-normal-italic.woff +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-normal-italic.woff2 +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-normal.woff +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-normal.woff2 +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/theme.css +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/doctools.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/documentation_options.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/file.png +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/graphviz.css +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/jquery-3.5.1.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/jquery-3.6.0.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/jquery.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/js/badge_only.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/js/html5shiv-printshiv.min.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/js/html5shiv.min.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/js/theme.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/language_data.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/minus.png +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/plus.png +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/pygments.css +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/searchtools.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/sphinx_highlight.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/underscore-1.13.1.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/underscore.js +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/abacus_api/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/agent/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/agent_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/ai_building_task/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/algorithm/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/annotation/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/annotation_config/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/annotation_document/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/annotation_entry/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/annotations_status/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/abstract/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/batch_prediction/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/blob_input/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/dataset_application_connector/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/document_retriever/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/feature_group/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/monitor/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/project/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/python_function_argument/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/python_functions/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/refresh/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/vector_store/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_client_utils/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_endpoint/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_key/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/application_connector/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/batch_prediction/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/batch_prediction_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/batch_prediction_version_logs/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/categorical_range_violation/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/chat_bot_response/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/chat_message/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/chat_session/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/code_source/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/concatenation_config/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/cpu_gpu_memory_specs/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/cryptography/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/custom_loss_function/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/custom_metric/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/custom_metric_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/custom_train_function_info/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/data_consistency_duplication/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/data_filter/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/data_metrics/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/data_prep_logs/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/data_quality_results/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/database_connector/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/dataset/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/dataset_column/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/dataset_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/dataset_version_logs/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/deployment/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/deployment_auth_token/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/deployment_conversation/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/deployment_conversation_event/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/deployment_conversation_export/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_annotation/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_retriever/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_retriever_config/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_retriever_lookup_result/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_retriever_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_store/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_store_import/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/drift_distribution/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/drift_distributions/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_chart_description/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_collinearity/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_data_consistency/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_feature_association/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_feature_collinearity/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_forecasting_analysis/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_leakage_detection/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/embedding_feature_drift_distribution/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/execute_feature_group_operation/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/execute_fg_operation/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/external_application/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_distribution/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_drift_record/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_drift_summary/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_document/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_export/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_export_config/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_export_download_url/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_lineage/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_metrics/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_refresh_export_config/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_row/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_row_process_logs/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_row_process_summary/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_template/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_template_variable_options/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_importance/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_mapping/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_record/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/file_connector/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/file_connector_instructions/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/file_connector_verification/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/forecasting_analysis_graph_data/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/forecasting_monitor_item_analysis/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/forecasting_monitor_summary/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/function_logs/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/generated_pit_feature_config_option/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/graph_dashboard/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/holdout_analysis/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/holdout_analysis_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/indexing_config/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/inferred_feature_mappings/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/item_statistics/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/language_detection_prediction/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/leakage_duplication/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_code_block/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_execution_preview/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_execution_result/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_input/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_parameters/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_response/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_search_result/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/memory_options/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_artifacts_export/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_blueprint_export/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_blueprint_stage/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_location/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_metrics/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_monitor/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_monitor_org_summary/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_monitor_summary/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_monitor_summary_from_org/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_monitor_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_monitor_version_metric_data/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_training_type_for_deployment/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_upload/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_version_feature_group_schema/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/modification_lock_info/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/module/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/monitor_alert/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/monitor_alert_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/natural_language_explanation/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/nested_feature/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/nested_feature_schema/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/nlp_classification_prediction/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/nlp_sentiment_prediction/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/null_violation/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/organization_external_application_settings/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/organization_group/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/organization_search_result/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/organization_secret/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/page_data/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_reference/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_step/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_step_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_step_version_logs/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_step_version_reference/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_version_logs/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/point_in_time_feature/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/point_in_time_feature_info/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/point_in_time_group/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/point_in_time_group_feature/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_dataset/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_feature_group/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_input/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_metric/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_metric_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_operator/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_operator_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pretrained_use_case/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/problem_type/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project_config/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project_dataset/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project_feature_group/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project_feature_group_schema/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project_feature_group_schema_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project_validation/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/python_function/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/python_function_validator/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/python_plot_function/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/range_violation/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/refresh_pipeline_run/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/refresh_policy/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/refresh_schedule/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/resolved_feature_group_template/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/return_class/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/schema/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/slack_connector_response/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/streaming_auth_token/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/streaming_client/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/streaming_connector/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/streaming_row_count/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/streaming_sample_code/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/test_point_predictions/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/training_config_options/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/type_violation/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/upload/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/upload_part/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/use_case/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/use_case_requirements/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/user/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/user_exception/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/vector_store/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/vector_store_config/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/vector_store_lookup_result/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/vector_store_version/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/webhook/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/index.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/py-modindex.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/docs/search.html +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/examples/fullscript.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/featurestore.md +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/requirements.txt +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/setup.cfg +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/sphinx/build_docs +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/sphinx/conf.py +0 -0
- {abacusai-0.79.0 → abacusai-0.79.2}/sphinx/index.rst +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import dataclasses
|
|
2
|
+
from typing import Union
|
|
3
|
+
|
|
4
|
+
from . import enums
|
|
5
|
+
from .abstract import ApiClass
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
@dataclasses.dataclass
|
|
9
|
+
class FieldDescriptor(ApiClass):
|
|
10
|
+
"""
|
|
11
|
+
Configs for vector store indexing.
|
|
12
|
+
|
|
13
|
+
Args:
|
|
14
|
+
field (str): The field to be extracted. This will be used as the key in the response.
|
|
15
|
+
description (str): The description of this field. If not included, the response_field will be used.
|
|
16
|
+
example_extraction (Union[str, int, bool, float]): An example of this extracted field.
|
|
17
|
+
type (enums.FieldDescriptorType): The type of this field. If not provided, the default type is STRING.
|
|
18
|
+
"""
|
|
19
|
+
field: str = dataclasses.field()
|
|
20
|
+
description: str = dataclasses.field(default=None)
|
|
21
|
+
example_extraction: Union[str, int, bool, float, list, dict] = dataclasses.field(default=None)
|
|
22
|
+
type: enums.FieldDescriptorType = dataclasses.field(default=enums.FieldDescriptorType.STRING)
|
|
@@ -39,6 +39,27 @@ class GoogleAnalyticsDatasetConfig(DatasetConfig):
|
|
|
39
39
|
self.application_connector_type = enums.ApplicationConnectorType.GOOGLEANALYTICS
|
|
40
40
|
|
|
41
41
|
|
|
42
|
+
@dataclasses.dataclass
|
|
43
|
+
class GoogleDriveDatasetConfig(DatasetConfig):
|
|
44
|
+
"""
|
|
45
|
+
Dataset config for Google Drive Application Connector
|
|
46
|
+
Args:
|
|
47
|
+
location (str): The regex location of the files to fetch
|
|
48
|
+
is_documentset (bool): Whether the dataset is a document set
|
|
49
|
+
csv_delimiter (str, optional): If the file format is CSV, use a specific csv delimiter
|
|
50
|
+
extract_bounding_boxes (bool, optional): Signifies whether to extract bounding boxes out of the documents. Only valid if is_documentset if True
|
|
51
|
+
merge_file_schemas (bool, optional): Signifies if the merge file schema policy is enabled. Not applicable if is_documentset is True
|
|
52
|
+
"""
|
|
53
|
+
location: str = dataclasses.field(default=None)
|
|
54
|
+
is_documentset: bool = dataclasses.field(default=None)
|
|
55
|
+
csv_delimiter: str = dataclasses.field(default=None)
|
|
56
|
+
extract_bounding_boxes: bool = dataclasses.field(default=False)
|
|
57
|
+
merge_file_schemas: bool = dataclasses.field(default=False)
|
|
58
|
+
|
|
59
|
+
def __post_init__(self):
|
|
60
|
+
self.application_connector_type = enums.ApplicationConnectorType.GOOGLEDRIVE
|
|
61
|
+
|
|
62
|
+
|
|
42
63
|
@dataclasses.dataclass
|
|
43
64
|
class SharepointDatasetConfig(DatasetConfig):
|
|
44
65
|
"""
|
|
@@ -48,7 +69,7 @@ class SharepointDatasetConfig(DatasetConfig):
|
|
|
48
69
|
is_documentset (bool): Whether the dataset is a document set
|
|
49
70
|
csv_delimiter (str, optional): If the file format is CSV, use a specific csv delimiter
|
|
50
71
|
extract_bounding_boxes (bool, optional): Signifies whether to extract bounding boxes out of the documents. Only valid if is_documentset if True
|
|
51
|
-
merge_file_schemas (bool, optional): Signifies if the merge file schema policy is enabled.
|
|
72
|
+
merge_file_schemas (bool, optional): Signifies if the merge file schema policy is enabled. Not applicable if is_documentset is True
|
|
52
73
|
"""
|
|
53
74
|
location: str = dataclasses.field(default=None)
|
|
54
75
|
is_documentset: bool = dataclasses.field(default=None)
|
|
@@ -76,6 +97,7 @@ class _DatasetConfigFactory(_ApiClassFactory):
|
|
|
76
97
|
config_class_map = {
|
|
77
98
|
enums.ApplicationConnectorType.CONFLUENCE: ConfluenceDatasetConfig,
|
|
78
99
|
enums.ApplicationConnectorType.GOOGLEANALYTICS: GoogleAnalyticsDatasetConfig,
|
|
100
|
+
enums.ApplicationConnectorType.GOOGLEDRIVE: GoogleDriveDatasetConfig,
|
|
79
101
|
enums.ApplicationConnectorType.SHAREPOINT: SharepointDatasetConfig,
|
|
80
102
|
enums.ApplicationConnectorType.ZENDESK: ZendeskDatasetConfig,
|
|
81
103
|
}
|
|
@@ -323,6 +323,7 @@ class ConnectorType(ApiEnum):
|
|
|
323
323
|
|
|
324
324
|
class ApplicationConnectorType(ApiEnum):
|
|
325
325
|
GOOGLEANALYTICS = 'GOOGLEANALYTICS'
|
|
326
|
+
GOOGLEDRIVE = 'GOOGLEDRIVE'
|
|
326
327
|
GIT = 'GIT'
|
|
327
328
|
CONFLUENCE = 'CONFLUENCE'
|
|
328
329
|
ZENDESK = 'ZENDESK'
|
|
@@ -422,3 +423,18 @@ class PythonFunctionType(ApiEnum):
|
|
|
422
423
|
FEATURE_GROUP = 'FEATURE_GROUP'
|
|
423
424
|
PLOTLY_FIG = 'PLOTLY_FIG'
|
|
424
425
|
STEP_FUNCTION = 'STEP_FUNCTION'
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
class EvalArtifactType(ApiEnum):
|
|
429
|
+
FORECASTING_ACCURACY = 'bar_chart'
|
|
430
|
+
FORECASTING_VOLUME = 'bar_chart_volume'
|
|
431
|
+
FORECASTING_HISTORY_LENGTH_ACCURACY = 'bar_chart_accuracy_by_history'
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
class FieldDescriptorType(ApiEnum):
|
|
435
|
+
STRING = 'STRING'
|
|
436
|
+
INTEGER = 'INTEGER'
|
|
437
|
+
FLOAT = 'FLOAT'
|
|
438
|
+
BOOLEAN = 'BOOLEAN'
|
|
439
|
+
DATETIME = 'DATETIME'
|
|
440
|
+
DATE = 'DATE'
|
|
@@ -57,11 +57,7 @@ class PersonalizationTrainingConfig(TrainingConfig):
|
|
|
57
57
|
compute_session_metrics (bool): Evaluate models based on how well they are able to predict the next session of interactions.
|
|
58
58
|
max_user_history_len_percentile (int): Filter out users with history length above this percentile.
|
|
59
59
|
downsample_item_popularity_percentile (float): Downsample items more popular than this percentile.
|
|
60
|
-
<<<<<<< HEAD
|
|
61
|
-
allow_duplicate_action_types (List[str]): event types which will not be deduplicated.
|
|
62
60
|
use_user_id_feature (bool): Use user id as a feature in CTR models.
|
|
63
|
-
=======
|
|
64
|
-
>>>>>>> e5f12c159c (add config options for session dedupe and recommendation exclusion)
|
|
65
61
|
"""
|
|
66
62
|
# top-level params
|
|
67
63
|
objective: enums.PersonalizationObjective = dataclasses.field(default=None)
|
|
@@ -382,6 +378,8 @@ class NamedEntityExtractionTrainingConfig(TrainingConfig):
|
|
|
382
378
|
active_labels_column (str): Entities that have been marked in a particular text
|
|
383
379
|
document_format (NLPDocumentFormat): Format of the input documents.
|
|
384
380
|
include_longformer (bool): Whether to include the longformer model.
|
|
381
|
+
save_predicted_pdf (bool): Whether to save predicted PDF documents
|
|
382
|
+
enhanced_ocr (bool): Enhanced text extraction from predicted digital documents
|
|
385
383
|
"""
|
|
386
384
|
objective: enums.NERObjective = dataclasses.field(default=None)
|
|
387
385
|
sort_objective: enums.NERObjective = dataclasses.field(default=None)
|
|
@@ -396,6 +394,9 @@ class NamedEntityExtractionTrainingConfig(TrainingConfig):
|
|
|
396
394
|
active_labels_column: str = dataclasses.field(default=None)
|
|
397
395
|
document_format: enums.NLPDocumentFormat = dataclasses.field(default=None)
|
|
398
396
|
include_longformer: bool = dataclasses.field(default=None)
|
|
397
|
+
# OCR
|
|
398
|
+
save_predicted_pdf: bool = True
|
|
399
|
+
enhanced_ocr: bool = False
|
|
399
400
|
|
|
400
401
|
def __post_init__(self):
|
|
401
402
|
self.problem_type = enums.ProblemType.NAMED_ENTITY_EXTRACTION
|
|
@@ -10,17 +10,19 @@ class ApiEndpoint(AbstractApiClass):
|
|
|
10
10
|
apiEndpoint (str): The URI that can be used to make API calls
|
|
11
11
|
predictEndpoint (str): The URI that can be used to make predict calls against Deployments
|
|
12
12
|
proxyEndpoint (str): The URI that can be used to make proxy server calls
|
|
13
|
+
llmEndpoint (str): The URI that can be used to make llm api calls
|
|
13
14
|
"""
|
|
14
15
|
|
|
15
|
-
def __init__(self, client, apiEndpoint=None, predictEndpoint=None, proxyEndpoint=None):
|
|
16
|
+
def __init__(self, client, apiEndpoint=None, predictEndpoint=None, proxyEndpoint=None, llmEndpoint=None):
|
|
16
17
|
super().__init__(client, None)
|
|
17
18
|
self.api_endpoint = apiEndpoint
|
|
18
19
|
self.predict_endpoint = predictEndpoint
|
|
19
20
|
self.proxy_endpoint = proxyEndpoint
|
|
21
|
+
self.llm_endpoint = llmEndpoint
|
|
20
22
|
|
|
21
23
|
def __repr__(self):
|
|
22
24
|
repr_dict = {f'api_endpoint': repr(self.api_endpoint), f'predict_endpoint': repr(
|
|
23
|
-
self.predict_endpoint), f'proxy_endpoint': repr(self.proxy_endpoint)}
|
|
25
|
+
self.predict_endpoint), f'proxy_endpoint': repr(self.proxy_endpoint), f'llm_endpoint': repr(self.llm_endpoint)}
|
|
24
26
|
class_name = "ApiEndpoint"
|
|
25
27
|
repr_str = ',\n '.join([f'{key}={value}' for key, value in repr_dict.items(
|
|
26
28
|
) if getattr(self, key, None) is not None])
|
|
@@ -33,6 +35,6 @@ class ApiEndpoint(AbstractApiClass):
|
|
|
33
35
|
Returns:
|
|
34
36
|
dict: The dict value representation of the class parameters
|
|
35
37
|
"""
|
|
36
|
-
resp = {'api_endpoint': self.api_endpoint, 'predict_endpoint':
|
|
37
|
-
self.
|
|
38
|
+
resp = {'api_endpoint': self.api_endpoint, 'predict_endpoint': self.predict_endpoint,
|
|
39
|
+
'proxy_endpoint': self.proxy_endpoint, 'llm_endpoint': self.llm_endpoint}
|
|
38
40
|
return {key: value for key, value in resp.items() if value is not None}
|
|
@@ -16,11 +16,12 @@ class ChatSession(AbstractApiClass):
|
|
|
16
16
|
createdAt (str): The timestamp at which the chat session was created
|
|
17
17
|
status (str): The status of the chat sessions
|
|
18
18
|
aiBuildingInProgress (bool): Whether the AI building is in progress or not
|
|
19
|
+
notification (str): A warn/info message about the chat session. For example, a suggestion to create a new session if the current one is too old
|
|
19
20
|
chatHistory (ChatMessage): The chat history for the conversation
|
|
20
21
|
nextAiBuildingTask (AiBuildingTask): The next AI building task for the chat session
|
|
21
22
|
"""
|
|
22
23
|
|
|
23
|
-
def __init__(self, client, answer=None, chatSessionId=None, projectId=None, name=None, createdAt=None, status=None, aiBuildingInProgress=None, chatHistory={}, nextAiBuildingTask={}):
|
|
24
|
+
def __init__(self, client, answer=None, chatSessionId=None, projectId=None, name=None, createdAt=None, status=None, aiBuildingInProgress=None, notification=None, chatHistory={}, nextAiBuildingTask={}):
|
|
24
25
|
super().__init__(client, chatSessionId)
|
|
25
26
|
self.answer = answer
|
|
26
27
|
self.chat_session_id = chatSessionId
|
|
@@ -29,13 +30,14 @@ class ChatSession(AbstractApiClass):
|
|
|
29
30
|
self.created_at = createdAt
|
|
30
31
|
self.status = status
|
|
31
32
|
self.ai_building_in_progress = aiBuildingInProgress
|
|
33
|
+
self.notification = notification
|
|
32
34
|
self.chat_history = client._build_class(ChatMessage, chatHistory)
|
|
33
35
|
self.next_ai_building_task = client._build_class(
|
|
34
36
|
AiBuildingTask, nextAiBuildingTask)
|
|
35
37
|
|
|
36
38
|
def __repr__(self):
|
|
37
39
|
repr_dict = {f'answer': repr(self.answer), f'chat_session_id': repr(self.chat_session_id), f'project_id': repr(self.project_id), f'name': repr(self.name), f'created_at': repr(self.created_at), f'status': repr(
|
|
38
|
-
self.status), f'ai_building_in_progress': repr(self.ai_building_in_progress), f'chat_history': repr(self.chat_history), f'next_ai_building_task': repr(self.next_ai_building_task)}
|
|
40
|
+
self.status), f'ai_building_in_progress': repr(self.ai_building_in_progress), f'notification': repr(self.notification), f'chat_history': repr(self.chat_history), f'next_ai_building_task': repr(self.next_ai_building_task)}
|
|
39
41
|
class_name = "ChatSession"
|
|
40
42
|
repr_str = ',\n '.join([f'{key}={value}' for key, value in repr_dict.items(
|
|
41
43
|
) if getattr(self, key, None) is not None])
|
|
@@ -48,8 +50,8 @@ class ChatSession(AbstractApiClass):
|
|
|
48
50
|
Returns:
|
|
49
51
|
dict: The dict value representation of the class parameters
|
|
50
52
|
"""
|
|
51
|
-
resp = {'answer': self.answer, 'chat_session_id': self.chat_session_id, 'project_id': self.project_id, 'name': self.name, 'created_at': self.created_at, 'status': self.status,
|
|
52
|
-
|
|
53
|
+
resp = {'answer': self.answer, 'chat_session_id': self.chat_session_id, 'project_id': self.project_id, 'name': self.name, 'created_at': self.created_at, 'status': self.status, 'ai_building_in_progress':
|
|
54
|
+
self.ai_building_in_progress, 'notification': self.notification, 'chat_history': self._get_attribute_as_dict(self.chat_history), 'next_ai_building_task': self._get_attribute_as_dict(self.next_ai_building_task)}
|
|
53
55
|
return {key: value for key, value in resp.items() if value is not None}
|
|
54
56
|
|
|
55
57
|
def get(self):
|
|
@@ -31,9 +31,9 @@ from .annotations_status import AnnotationsStatus
|
|
|
31
31
|
from .api_class import (
|
|
32
32
|
AlertActionConfig, AlertConditionConfig, ApiClass, ApiEnum,
|
|
33
33
|
BatchPredictionArgs, DatasetConfig, DocumentRetrieverConfig,
|
|
34
|
-
FeatureGroupExportConfig, ForecastingMonitorConfig,
|
|
35
|
-
ParsingConfig, ProblemType, PythonFunctionType,
|
|
36
|
-
TrainingConfig
|
|
34
|
+
EvalArtifactType, FeatureGroupExportConfig, ForecastingMonitorConfig,
|
|
35
|
+
MergeConfig, ParsingConfig, ProblemType, PythonFunctionType,
|
|
36
|
+
SamplingConfig, TrainingConfig
|
|
37
37
|
)
|
|
38
38
|
from .api_client_utils import (
|
|
39
39
|
INVALID_PANDAS_COLUMN_NAME_CHARACTERS, clean_column_name,
|
|
@@ -76,6 +76,7 @@ from .eda_forecasting_analysis import EdaForecastingAnalysis
|
|
|
76
76
|
from .eda_version import EdaVersion
|
|
77
77
|
from .execute_feature_group_operation import ExecuteFeatureGroupOperation
|
|
78
78
|
from .external_application import ExternalApplication
|
|
79
|
+
from .extracted_fields import ExtractedFields
|
|
79
80
|
from .feature import Feature
|
|
80
81
|
from .feature_distribution import FeatureDistribution
|
|
81
82
|
from .feature_group import FeatureGroup
|
|
@@ -100,6 +101,7 @@ from .holdout_analysis import HoldoutAnalysis
|
|
|
100
101
|
from .holdout_analysis_version import HoldoutAnalysisVersion
|
|
101
102
|
from .inferred_feature_mappings import InferredFeatureMappings
|
|
102
103
|
from .llm_execution_result import LlmExecutionResult
|
|
104
|
+
from .llm_generated_code import LlmGeneratedCode
|
|
103
105
|
from .llm_input import LlmInput
|
|
104
106
|
from .llm_parameters import LlmParameters
|
|
105
107
|
from .llm_response import LlmResponse
|
|
@@ -515,7 +517,7 @@ class BaseApiClient:
|
|
|
515
517
|
client_options (ClientOptions): Optional API client configurations
|
|
516
518
|
skip_version_check (bool): If true, will skip checking the server's current API version on initializing the client
|
|
517
519
|
"""
|
|
518
|
-
client_version = '0.79.
|
|
520
|
+
client_version = '0.79.2'
|
|
519
521
|
|
|
520
522
|
def __init__(self, api_key: str = None, server: str = None, client_options: ClientOptions = None, skip_version_check: bool = False):
|
|
521
523
|
self.api_key = api_key
|
|
@@ -2054,7 +2056,7 @@ class ReadOnlyClient(BaseApiClient):
|
|
|
2054
2056
|
|
|
2055
2057
|
Returns:
|
|
2056
2058
|
list[FeatureGroupRow]: A list of feature group rows."""
|
|
2057
|
-
return self.
|
|
2059
|
+
return self._proxy_request('getData', 'GET', query_params={'featureGroupId': feature_group_id, 'primaryKey': primary_key, 'numRows': num_rows}, parse_type=FeatureGroupRow, is_sync=True)
|
|
2058
2060
|
|
|
2059
2061
|
def list_pending_feature_group_documents(self, feature_group_id: str) -> List[FeatureGroupDocument]:
|
|
2060
2062
|
"""Lists all pending documents added to feature group.
|
|
@@ -2411,6 +2413,13 @@ class ReadOnlyClient(BaseApiClient):
|
|
|
2411
2413
|
ExternalApplication: The External Application."""
|
|
2412
2414
|
return self._call_api('describeExternalApplication', 'GET', query_params={'externalApplicationId': external_application_id}, parse_type=ExternalApplication)
|
|
2413
2415
|
|
|
2416
|
+
def list_external_applications(self) -> List[ExternalApplication]:
|
|
2417
|
+
"""Lists External Applications in an organization.
|
|
2418
|
+
|
|
2419
|
+
Returns:
|
|
2420
|
+
list[ExternalApplication]: List of External Applications."""
|
|
2421
|
+
return self._call_api('listExternalApplications', 'GET', query_params={}, parse_type=ExternalApplication)
|
|
2422
|
+
|
|
2414
2423
|
def describe_agent(self, agent_id: str) -> Agent:
|
|
2415
2424
|
"""Retrieves a full description of the specified model.
|
|
2416
2425
|
|
|
@@ -3330,6 +3339,36 @@ class ApiClient(ReadOnlyClient):
|
|
|
3330
3339
|
"""
|
|
3331
3340
|
_request_context.chat_history = chat_history
|
|
3332
3341
|
|
|
3342
|
+
def get_agent_context_conversation_id(self):
|
|
3343
|
+
"""
|
|
3344
|
+
Gets the deployment conversation ID from the current request context. Applicable within a AIAgent
|
|
3345
|
+
execute function.
|
|
3346
|
+
|
|
3347
|
+
Returns:
|
|
3348
|
+
str: The deployment conversation ID for the current request being processed by the Agent.
|
|
3349
|
+
"""
|
|
3350
|
+
return get_object_from_context(self, _request_context, 'deployment_conversation_id', str)
|
|
3351
|
+
|
|
3352
|
+
def get_agent_context_external_session_id(self):
|
|
3353
|
+
"""
|
|
3354
|
+
Gets the external session ID from the current request context if it has been set with the request.
|
|
3355
|
+
Applicable within a AIAgent execute function.
|
|
3356
|
+
|
|
3357
|
+
Returns:
|
|
3358
|
+
str: The external session ID for the current request being processed by the Agent.
|
|
3359
|
+
"""
|
|
3360
|
+
return get_object_from_context(self, _request_context, 'external_session_id', str)
|
|
3361
|
+
|
|
3362
|
+
def get_agent_context_doc_ids(self):
|
|
3363
|
+
"""
|
|
3364
|
+
Gets the document ID from the current request context if a document has been uploaded with the request.
|
|
3365
|
+
Applicable within a AIAgent execute function.
|
|
3366
|
+
|
|
3367
|
+
Returns:
|
|
3368
|
+
List[str]: The document IDs the current request being processed by the Agent.
|
|
3369
|
+
"""
|
|
3370
|
+
return get_object_from_context(self, _request_context, 'doc_ids', List[str])
|
|
3371
|
+
|
|
3333
3372
|
def clear_agent_context(self):
|
|
3334
3373
|
"""
|
|
3335
3374
|
Clears the current request context.
|
|
@@ -3512,11 +3551,11 @@ class ApiClient(ReadOnlyClient):
|
|
|
3512
3551
|
Returns:
|
|
3513
3552
|
pandas.DataFrame: The result of the query.
|
|
3514
3553
|
"""
|
|
3515
|
-
|
|
3554
|
+
code = self.generate_code_for_data_query_using_llm(
|
|
3516
3555
|
query=query, feature_group_ids=feature_group_ids, prompt_context=prompt_context, llm_name=llm_name, temperature=temperature)
|
|
3517
3556
|
if preview:
|
|
3518
|
-
return self._build_class(LlmExecutionResult, {'preview': {'sql': sql}})
|
|
3519
|
-
execute_query = self.execute_async_feature_group_operation(sql)
|
|
3557
|
+
return self._build_class(LlmExecutionResult, {'preview': {'sql': code.sql}})
|
|
3558
|
+
execute_query = self.execute_async_feature_group_operation(code.sql)
|
|
3520
3559
|
execute_query.wait_for_execution(timeout=timeout, delay=delay)
|
|
3521
3560
|
return self._build_class(LlmExecutionResult, {'error': execute_query.error}) if execute_query.error else execute_query.load_as_pandas()
|
|
3522
3561
|
|
|
@@ -4970,10 +5009,7 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
4970
5009
|
return self._call_api('createTrainTestDataSplitFeatureGroup', 'POST', query_params={}, body={'projectId': project_id, 'trainingConfig': training_config, 'featureGroupIds': feature_group_ids}, parse_type=FeatureGroup)
|
|
4971
5010
|
|
|
4972
5011
|
def train_model(self, project_id: str, name: str = None, training_config: Union[dict, TrainingConfig] = None, feature_group_ids: list = None, refresh_schedule: str = None, custom_algorithms: list = None, custom_algorithms_only: bool = False, custom_algorithm_configs: dict = None, builtin_algorithms: list = None, cpu_size: str = None, memory: int = None, algorithm_training_configs: list = None) -> Model:
|
|
4973
|
-
"""
|
|
4974
|
-
|
|
4975
|
-
This method trains a model in the given project, using user-specified training configurations defined in the `getTrainingConfigOptions` method.
|
|
4976
|
-
|
|
5012
|
+
"""Create a new model and start its training in the given project.
|
|
4977
5013
|
|
|
4978
5014
|
Args:
|
|
4979
5015
|
project_id (str): The unique ID associated with the project.
|
|
@@ -4984,7 +5020,7 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
4984
5020
|
custom_algorithms (list): List of user-defined algorithms to train. If not set, the default enabled custom algorithms will be used.
|
|
4985
5021
|
custom_algorithms_only (bool): Whether to only run custom algorithms.
|
|
4986
5022
|
custom_algorithm_configs (dict): Configs for each user-defined algorithm; key is the algorithm name, value is the config serialized to JSON.
|
|
4987
|
-
builtin_algorithms (list): List of IDs of the builtin algorithms provided by Abacus.AI to train. If not set, all applicable builtin algorithms will be used.
|
|
5023
|
+
builtin_algorithms (list): List of algorithm names or algorithm IDs of the builtin algorithms provided by Abacus.AI to train. If not set, all applicable builtin algorithms will be used.
|
|
4988
5024
|
cpu_size (str): Size of the CPU for the user-defined algorithms during training.
|
|
4989
5025
|
memory (int): Memory (in GB) for the user-defined algorithms during training.
|
|
4990
5026
|
algorithm_training_configs (list): List of algorithm specifc training configs that will be part of the model training AutoML run.
|
|
@@ -5142,7 +5178,7 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
5142
5178
|
deployment_ids (list): List of unique string identifiers of deployments to automatically deploy to.
|
|
5143
5179
|
feature_group_ids (list): List of feature group IDs provided by the user to train the model on.
|
|
5144
5180
|
custom_algorithms (list): List of user-defined algorithms to train. If not set, will honor the runs from the last time and applicable new custom algorithms.
|
|
5145
|
-
builtin_algorithms (list): List of
|
|
5181
|
+
builtin_algorithms (list): List of algorithm names or algorithm IDs of Abacus.AI built-in algorithms to train. If not set, will honor the runs from the last time and applicable new built-in algorithms.
|
|
5146
5182
|
custom_algorithm_configs (dict): User-defined training configs for each custom algorithm.
|
|
5147
5183
|
cpu_size (str): Size of the CPU for the user-defined algorithms during training.
|
|
5148
5184
|
memory (int): Memory (in GB) for the user-defined algorithms during training.
|
|
@@ -5167,13 +5203,13 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
5167
5203
|
model_version (str): The unique identifier of the model version to delete."""
|
|
5168
5204
|
return self._call_api('deleteModelVersion', 'DELETE', query_params={'modelVersion': model_version})
|
|
5169
5205
|
|
|
5170
|
-
def export_model_artifact_as_feature_group(self, model_version: str, table_name: str, artifact_type:
|
|
5206
|
+
def export_model_artifact_as_feature_group(self, model_version: str, table_name: str, artifact_type: Union[dict, EvalArtifactType] = None) -> FeatureGroup:
|
|
5171
5207
|
"""Exports metric artifact data for a model as a feature group.
|
|
5172
5208
|
|
|
5173
5209
|
Args:
|
|
5174
5210
|
model_version (str): Unique string identifier for the version of the model.
|
|
5175
5211
|
table_name (str): Name of the feature group table to create.
|
|
5176
|
-
artifact_type (
|
|
5212
|
+
artifact_type (EvalArtifactType): eval artifact type to export.
|
|
5177
5213
|
|
|
5178
5214
|
Returns:
|
|
5179
5215
|
FeatureGroup: The created feature group."""
|
|
@@ -6641,7 +6677,7 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
6641
6677
|
|
|
6642
6678
|
Returns:
|
|
6643
6679
|
FeatureGroupRow: The feature group row that was upserted."""
|
|
6644
|
-
return self.
|
|
6680
|
+
return self._proxy_request('upsertData', 'POST', query_params={'streamingToken': streaming_token}, body={'featureGroupId': feature_group_id, 'data': data}, parse_type=FeatureGroupRow, is_sync=True)
|
|
6645
6681
|
|
|
6646
6682
|
def upsert_online_data(self, feature_group_id: str, data: dict) -> FeatureGroupRow:
|
|
6647
6683
|
"""Update new data into the feature group for a given lookup key record ID if the record ID is found; otherwise, insert new data into the feature group.
|
|
@@ -7065,13 +7101,13 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
7065
7101
|
Algorithm: The new custom model can be used for training."""
|
|
7066
7102
|
return self._call_api('updateAlgorithm', 'PATCH', query_params={}, body={'algorithm': algorithm, 'sourceCode': source_code, 'trainingDataParameterNamesMapping': training_data_parameter_names_mapping, 'trainingConfigParameterName': training_config_parameter_name, 'trainFunctionName': train_function_name, 'predictFunctionName': predict_function_name, 'predictManyFunctionName': predict_many_function_name, 'initializeFunctionName': initialize_function_name, 'configOptions': config_options, 'isDefaultEnabled': is_default_enabled, 'useGpu': use_gpu, 'packageRequirements': package_requirements}, parse_type=Algorithm)
|
|
7067
7103
|
|
|
7068
|
-
def list_builtin_algorithms(self, project_id: str, feature_group_ids: list, training_config: dict = None) -> List[Algorithm]:
|
|
7069
|
-
"""Return list of built-in algorithms based on given input.
|
|
7104
|
+
def list_builtin_algorithms(self, project_id: str, feature_group_ids: list, training_config: Union[dict, TrainingConfig] = None) -> List[Algorithm]:
|
|
7105
|
+
"""Return list of built-in algorithms based on given input data and training config.
|
|
7070
7106
|
|
|
7071
7107
|
Args:
|
|
7072
7108
|
project_id (str): Unique string identifier associated with the project.
|
|
7073
|
-
feature_group_ids (list): List of feature group
|
|
7074
|
-
training_config (
|
|
7109
|
+
feature_group_ids (list): List of feature group IDs specifying input data.
|
|
7110
|
+
training_config (TrainingConfig): The training config to be used for model training.
|
|
7075
7111
|
|
|
7076
7112
|
Returns:
|
|
7077
7113
|
list[Algorithm]: List of applicable builtin algorithms."""
|
|
@@ -7396,13 +7432,6 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
7396
7432
|
ExternalApplication: The updated External Application."""
|
|
7397
7433
|
return self._call_api('updateExternalApplication', 'POST', query_params={}, body={'externalApplicationId': external_application_id, 'name': name, 'theme': theme}, parse_type=ExternalApplication)
|
|
7398
7434
|
|
|
7399
|
-
def list_external_applications(self) -> List[ExternalApplication]:
|
|
7400
|
-
"""Lists External Applications in an organization.
|
|
7401
|
-
|
|
7402
|
-
Returns:
|
|
7403
|
-
list[ExternalApplication]: List of External Applications."""
|
|
7404
|
-
return self._call_api('listExternalApplications', 'POST', query_params={}, body={}, parse_type=ExternalApplication)
|
|
7405
|
-
|
|
7406
7435
|
def delete_external_application(self, external_application_id: str):
|
|
7407
7436
|
"""Deletes an External Application.
|
|
7408
7437
|
|
|
@@ -7483,7 +7512,7 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
7483
7512
|
LlmParameters: The parameters for LLM using the given inputs."""
|
|
7484
7513
|
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)
|
|
7485
7514
|
|
|
7486
|
-
def generate_code_for_data_query_using_llm(self, query: str, feature_group_ids: list, prompt_context: str = None, llm_name: str = None, temperature: float = None) ->
|
|
7515
|
+
def generate_code_for_data_query_using_llm(self, query: str, feature_group_ids: list, prompt_context: str = None, llm_name: str = None, temperature: float = None) -> LlmGeneratedCode:
|
|
7487
7516
|
"""Execute a data query using a large language model in an async fashion.
|
|
7488
7517
|
|
|
7489
7518
|
Args:
|
|
@@ -7491,8 +7520,24 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
7491
7520
|
feature_group_ids (list): A list of feature group IDs that the query should be executed against.
|
|
7492
7521
|
prompt_context (str): The context message used to construct the prompt for the language model. If not provide, a default context message is used.
|
|
7493
7522
|
llm_name (str): The name of the language model to use. If not provided, the default language model is used.
|
|
7494
|
-
temperature (float): The temperature to use for the language model if supported. If not provided, the default temperature is used.
|
|
7495
|
-
|
|
7523
|
+
temperature (float): The temperature to use for the language model if supported. If not provided, the default temperature is used.
|
|
7524
|
+
|
|
7525
|
+
Returns:
|
|
7526
|
+
LlmGeneratedCode: The generated SQL code."""
|
|
7527
|
+
return self._proxy_request('GenerateCodeForDataQueryUsingLlm', 'POST', query_params={}, body={'query': query, 'featureGroupIds': feature_group_ids, 'promptContext': prompt_context, 'llmName': llm_name, 'temperature': temperature}, parse_type=LlmGeneratedCode)
|
|
7528
|
+
|
|
7529
|
+
def extract_data_using_llm(self, field_descriptors: list, document_id: str = None, document_text: str = None, llm_name: str = None) -> ExtractedFields:
|
|
7530
|
+
"""Extract fields from a document using a large language model.
|
|
7531
|
+
|
|
7532
|
+
Args:
|
|
7533
|
+
field_descriptors (list): A list of fields to extract from the document.
|
|
7534
|
+
document_id (str): The ID of the document to query.
|
|
7535
|
+
document_text (str): The text of the document to query. Only used if document_id is not provided.
|
|
7536
|
+
llm_name (str): The name of the language model to use. If not provided, the default language model is used.
|
|
7537
|
+
|
|
7538
|
+
Returns:
|
|
7539
|
+
ExtractedFields: The response from the document query."""
|
|
7540
|
+
return self._call_api('extractDataUsingLLM', 'POST', query_params={}, body={'fieldDescriptors': field_descriptors, 'documentId': document_id, 'documentText': document_text, 'llmName': llm_name}, parse_type=ExtractedFields)
|
|
7496
7541
|
|
|
7497
7542
|
def create_document_retriever(self, project_id: str, name: str, feature_group_id: str, document_retriever_config: Union[dict, DocumentRetrieverConfig] = None) -> DocumentRetriever:
|
|
7498
7543
|
"""Returns a document retriever that stores embeddings for document chunks in a feature group.
|
|
@@ -162,7 +162,7 @@ class DocumentRetriever(AbstractApiClass):
|
|
|
162
162
|
"""
|
|
163
163
|
return self.describe().latest_document_retriever_version.status
|
|
164
164
|
|
|
165
|
-
def get_matching_documents(self, query: str, filters: dict = None, limit: int = None, result_columns: list = None, max_words: int = None, num_retrieval_margin_words: int = None, max_words_per_chunk: int = None):
|
|
165
|
+
def get_matching_documents(self, query: str, filters: dict = None, limit: int = None, result_columns: list = None, max_words: int = None, num_retrieval_margin_words: int = None, max_words_per_chunk: int = None, score_multiplier_column: str = None):
|
|
166
166
|
"""
|
|
167
167
|
Lookup document retrievers and return the matching documents from the document retriever deployed with given query.
|
|
168
168
|
|
|
@@ -179,8 +179,9 @@ class DocumentRetriever(AbstractApiClass):
|
|
|
179
179
|
max_words (int): If provided, will limit the total number of words in the results to the value specified.
|
|
180
180
|
num_retrieval_margin_words (int): If provided, will add this number of words from left and right of the returned chunks.
|
|
181
181
|
max_words_per_chunk (int): If provided, will limit the number of words in each chunk to the value specified. If the value provided is smaller than the actual size of chunk on disk, which is determined during document retriever creation, the actual size of chunk will be used. I.e, chunks looked up from document retrievers will not be split into smaller chunks during lookup due to this setting.
|
|
182
|
+
score_multiplier_column (str): If provided, will use the values in this column to modify the relevance score of the returned chunks. Values in this column must be numeric.
|
|
182
183
|
|
|
183
184
|
Returns:
|
|
184
185
|
list[DocumentRetrieverLookupResult]: The relevant documentation results found from the document retriever.
|
|
185
186
|
"""
|
|
186
|
-
return self.client.get_matching_documents(self.document_retriever_id, query, filters, limit, result_columns, max_words, num_retrieval_margin_words, max_words_per_chunk)
|
|
187
|
+
return self.client.get_matching_documents(self.document_retriever_id, query, filters, limit, result_columns, max_words, num_retrieval_margin_words, max_words_per_chunk, score_multiplier_column)
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
from .return_class import AbstractApiClass
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class ExtractedFields(AbstractApiClass):
|
|
5
|
+
"""
|
|
6
|
+
The fields extracted from a document.
|
|
7
|
+
|
|
8
|
+
Args:
|
|
9
|
+
client (ApiClient): An authenticated API Client instance
|
|
10
|
+
data (dict): The data for the document.
|
|
11
|
+
rawLlmResponse (str): The raw llm response. Only returned if it could not be parsed to json.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
def __init__(self, client, data=None, rawLlmResponse=None):
|
|
15
|
+
super().__init__(client, None)
|
|
16
|
+
self.data = data
|
|
17
|
+
self.raw_llm_response = rawLlmResponse
|
|
18
|
+
|
|
19
|
+
def __repr__(self):
|
|
20
|
+
repr_dict = {f'data': repr(
|
|
21
|
+
self.data), f'raw_llm_response': repr(self.raw_llm_response)}
|
|
22
|
+
class_name = "ExtractedFields"
|
|
23
|
+
repr_str = ',\n '.join([f'{key}={value}' for key, value in repr_dict.items(
|
|
24
|
+
) if getattr(self, key, None) is not None])
|
|
25
|
+
return f"{class_name}({repr_str})"
|
|
26
|
+
|
|
27
|
+
def to_dict(self):
|
|
28
|
+
"""
|
|
29
|
+
Get a dict representation of the parameters in this class
|
|
30
|
+
|
|
31
|
+
Returns:
|
|
32
|
+
dict: The dict value representation of the class parameters
|
|
33
|
+
"""
|
|
34
|
+
resp = {'data': self.data, 'raw_llm_response': self.raw_llm_response}
|
|
35
|
+
return {key: value for key, value in resp.items() if value is not None}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
from .return_class import AbstractApiClass
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class LlmGeneratedCode(AbstractApiClass):
|
|
5
|
+
"""
|
|
6
|
+
Code generated by LLM.
|
|
7
|
+
|
|
8
|
+
Args:
|
|
9
|
+
client (ApiClient): An authenticated API Client instance
|
|
10
|
+
sql (str): SQL query generated by LLM.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
def __init__(self, client, sql=None):
|
|
14
|
+
super().__init__(client, None)
|
|
15
|
+
self.sql = sql
|
|
16
|
+
|
|
17
|
+
def __repr__(self):
|
|
18
|
+
repr_dict = {f'sql': repr(self.sql)}
|
|
19
|
+
class_name = "LlmGeneratedCode"
|
|
20
|
+
repr_str = ',\n '.join([f'{key}={value}' for key, value in repr_dict.items(
|
|
21
|
+
) if getattr(self, key, None) is not None])
|
|
22
|
+
return f"{class_name}({repr_str})"
|
|
23
|
+
|
|
24
|
+
def to_dict(self):
|
|
25
|
+
"""
|
|
26
|
+
Get a dict representation of the parameters in this class
|
|
27
|
+
|
|
28
|
+
Returns:
|
|
29
|
+
dict: The dict value representation of the class parameters
|
|
30
|
+
"""
|
|
31
|
+
resp = {'sql': self.sql}
|
|
32
|
+
return {key: value for key, value in resp.items() if value is not None}
|
|
@@ -282,7 +282,7 @@ class Model(AbstractApiClass):
|
|
|
282
282
|
deployment_ids (list): List of unique string identifiers of deployments to automatically deploy to.
|
|
283
283
|
feature_group_ids (list): List of feature group IDs provided by the user to train the model on.
|
|
284
284
|
custom_algorithms (list): List of user-defined algorithms to train. If not set, will honor the runs from the last time and applicable new custom algorithms.
|
|
285
|
-
builtin_algorithms (list): List of
|
|
285
|
+
builtin_algorithms (list): List of algorithm names or algorithm IDs of Abacus.AI built-in algorithms to train. If not set, will honor the runs from the last time and applicable new built-in algorithms.
|
|
286
286
|
custom_algorithm_configs (dict): User-defined training configs for each custom algorithm.
|
|
287
287
|
cpu_size (str): Size of the CPU for the user-defined algorithms during training.
|
|
288
288
|
memory (int): Memory (in GB) for the user-defined algorithms during training.
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import time
|
|
2
|
+
from typing import Union
|
|
2
3
|
|
|
3
|
-
from .api_class import DeployableAlgorithm, TrainingConfig
|
|
4
|
+
from .api_class import DeployableAlgorithm, EvalArtifactType, TrainingConfig
|
|
4
5
|
from .code_source import CodeSource
|
|
5
6
|
from .return_class import AbstractApiClass
|
|
6
7
|
|
|
@@ -148,13 +149,13 @@ class ModelVersion(AbstractApiClass):
|
|
|
148
149
|
"""
|
|
149
150
|
return self.client.delete_model_version(self.model_version)
|
|
150
151
|
|
|
151
|
-
def export_model_artifact_as_feature_group(self, table_name: str, artifact_type:
|
|
152
|
+
def export_model_artifact_as_feature_group(self, table_name: str, artifact_type: Union[dict, EvalArtifactType] = None):
|
|
152
153
|
"""
|
|
153
154
|
Exports metric artifact data for a model as a feature group.
|
|
154
155
|
|
|
155
156
|
Args:
|
|
156
157
|
table_name (str): Name of the feature group table to create.
|
|
157
|
-
artifact_type (
|
|
158
|
+
artifact_type (EvalArtifactType): eval artifact type to export.
|
|
158
159
|
|
|
159
160
|
Returns:
|
|
160
161
|
FeatureGroup: The created feature group.
|
|
@@ -220,10 +220,7 @@ class Project(AbstractApiClass):
|
|
|
220
220
|
|
|
221
221
|
def train_model(self, name: str = None, training_config: Union[dict, TrainingConfig] = None, feature_group_ids: list = None, refresh_schedule: str = None, custom_algorithms: list = None, custom_algorithms_only: bool = False, custom_algorithm_configs: dict = None, builtin_algorithms: list = None, cpu_size: str = None, memory: int = None, algorithm_training_configs: list = None):
|
|
222
222
|
"""
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
This method trains a model in the given project, using user-specified training configurations defined in the `getTrainingConfigOptions` method.
|
|
226
|
-
|
|
223
|
+
Create a new model and start its training in the given project.
|
|
227
224
|
|
|
228
225
|
Args:
|
|
229
226
|
name (str): The name of the model. Defaults to "<Project Name> Model".
|
|
@@ -233,7 +230,7 @@ class Project(AbstractApiClass):
|
|
|
233
230
|
custom_algorithms (list): List of user-defined algorithms to train. If not set, the default enabled custom algorithms will be used.
|
|
234
231
|
custom_algorithms_only (bool): Whether to only run custom algorithms.
|
|
235
232
|
custom_algorithm_configs (dict): Configs for each user-defined algorithm; key is the algorithm name, value is the config serialized to JSON.
|
|
236
|
-
builtin_algorithms (list): List of IDs of the builtin algorithms provided by Abacus.AI to train. If not set, all applicable builtin algorithms will be used.
|
|
233
|
+
builtin_algorithms (list): List of algorithm names or algorithm IDs of the builtin algorithms provided by Abacus.AI to train. If not set, all applicable builtin algorithms will be used.
|
|
237
234
|
cpu_size (str): Size of the CPU for the user-defined algorithms during training.
|
|
238
235
|
memory (int): Memory (in GB) for the user-defined algorithms during training.
|
|
239
236
|
algorithm_training_configs (list): List of algorithm specifc training configs that will be part of the model training AutoML run.
|
|
@@ -567,13 +564,13 @@ class Project(AbstractApiClass):
|
|
|
567
564
|
"""
|
|
568
565
|
return self.client.list_graph_dashboards(self.project_id)
|
|
569
566
|
|
|
570
|
-
def list_builtin_algorithms(self, feature_group_ids: list, training_config: dict = None):
|
|
567
|
+
def list_builtin_algorithms(self, feature_group_ids: list, training_config: Union[dict, TrainingConfig] = None):
|
|
571
568
|
"""
|
|
572
|
-
Return list of built-in algorithms based on given input.
|
|
569
|
+
Return list of built-in algorithms based on given input data and training config.
|
|
573
570
|
|
|
574
571
|
Args:
|
|
575
|
-
feature_group_ids (list): List of feature group
|
|
576
|
-
training_config (
|
|
572
|
+
feature_group_ids (list): List of feature group IDs specifying input data.
|
|
573
|
+
training_config (TrainingConfig): The training config to be used for model training.
|
|
577
574
|
|
|
578
575
|
Returns:
|
|
579
576
|
list[Algorithm]: List of applicable builtin algorithms.
|