abacusai 1.4.2__tar.gz → 1.4.4__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-1.4.2/abacusai.egg-info → abacusai-1.4.4}/PKG-INFO +1 -1
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/__init__.py +1 -1
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/ai_agents.py +8 -4
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/dataset.py +2 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/enums.py +5 -11
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/model.py +9 -3
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_client_utils.py +188 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/client.py +75 -12
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/data_upload_result.py +6 -3
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_version.py +8 -4
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/prediction_operator.py +1 -1
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/project.py +9 -0
- abacusai-1.4.4/abacusai/public.pem +5 -0
- abacusai-1.4.4/abacusai/tone_details.py +49 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/training_config_options.py +3 -3
- {abacusai-1.4.2 → abacusai-1.4.4/abacusai.egg-info}/PKG-INFO +1 -1
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai.egg-info/SOURCES.txt +1 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/dataset/index.rst.txt +8 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/enums/index.rst.txt +15 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/index.rst.txt +43 -1
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/model/index.rst.txt +7 -1
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/client/index.rst.txt +4 -2
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/index.rst.txt +34 -3
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_version/index.rst.txt +5 -1
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/training_config_options/index.rst.txt +4 -4
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/dataset/index.html +6 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/enums/index.html +15 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/index.html +374 -336
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/model/index.html +7 -1
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/client/index.html +3 -2
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/index.html +36 -3
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_version/index.html +3 -1
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/training_config_options/index.html +3 -3
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/genindex.html +74 -34
- abacusai-1.4.4/docs/objects.inv +0 -0
- abacusai-1.4.4/docs/searchindex.js +1 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/setup.py +1 -1
- abacusai-1.4.2/abacusai/public.pem +0 -5
- abacusai-1.4.2/docs/objects.inv +0 -0
- abacusai-1.4.2/docs/searchindex.js +0 -1
- {abacusai-1.4.2 → abacusai-1.4.4}/.gitignore +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/LICENSE +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/README.md +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/abacus_api.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/agent.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/agent_conversation.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/agent_data_document_info.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/agent_data_execution_result.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/agent_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/ai_building_task.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/algorithm.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/annotation.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/annotation_config.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/annotation_document.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/annotation_entry.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/annotations_status.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/__init__.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/abstract.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/ai_chat.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/batch_prediction.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/blob_input.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/connectors.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/dataset_application_connector.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/deployment.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/document_retriever.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/feature_group.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/monitor.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/monitor_alert.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/project.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/python_functions.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/refresh.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_class/segments.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_endpoint.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/api_key.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/app_user_group.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/application_connector.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/batch_prediction.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/batch_prediction_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/batch_prediction_version_logs.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/categorical_range_violation.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/chat_message.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/chat_session.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/chatllm_referral_invite.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/code_source.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/concatenation_config.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/cpu_gpu_memory_specs.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/cryptography.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/custom_chat_instructions.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/custom_loss_function.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/custom_metric.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/custom_metric_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/custom_train_function_info.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/data_consistency_duplication.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/data_metrics.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/data_prep_logs.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/data_quality_results.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/database_column_feature_mapping.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/database_connector.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/database_connector_column.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/database_connector_schema.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/dataset.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/dataset_column.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/dataset_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/dataset_version_logs.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/deployment.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/deployment_auth_token.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/deployment_conversation.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/deployment_conversation_event.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/deployment_conversation_export.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/deployment_statistics.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/document_data.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/document_retriever.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/document_retriever_config.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/document_retriever_lookup_result.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/document_retriever_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/drift_distribution.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/drift_distributions.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/eda.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/eda_chart_description.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/eda_collinearity.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/eda_data_consistency.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/eda_feature_association.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/eda_feature_collinearity.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/eda_forecasting_analysis.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/eda_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/embedding_feature_drift_distribution.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/execute_feature_group_operation.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/external_application.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/external_invite.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/extracted_fields.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_distribution.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_drift_record.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_drift_summary.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_document.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_export.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_export_config.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_export_download_url.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_lineage.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_refresh_export_config.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_row.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_row_process.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_row_process_logs.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_row_process_summary.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_template.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_template_variable_options.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_group_version_logs.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_importance.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_mapping.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_performance_analysis.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/feature_record.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/file_connector.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/file_connector_instructions.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/file_connector_verification.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/finetuned_pretrained_model.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/forecasting_analysis_graph_data.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/forecasting_monitor_item_analysis.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/forecasting_monitor_summary.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/function_logs.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/generated_pit_feature_config_option.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/global_context.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/graph_dashboard.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/holdout_analysis.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/holdout_analysis_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/hosted_model_token.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/indexing_config.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/inferred_database_column_to_feature_mappings.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/inferred_feature_mappings.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/item_statistics.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/llm_app.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/llm_code_block.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/llm_execution_preview.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/llm_execution_result.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/llm_generated_code.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/llm_input.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/llm_parameters.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/llm_response.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/memory_options.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/messaging_connector_response.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_artifacts_export.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_blueprint_export.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_blueprint_stage.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_location.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_metrics.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_monitor.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_monitor_org_summary.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_monitor_summary.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_monitor_summary_from_org.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_monitor_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_monitor_version_metric_data.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_training_type_for_deployment.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_upload.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/model_version_feature_group_schema.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/modification_lock_info.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/module.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/monitor_alert.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/monitor_alert_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/monitor_drift_and_distributions.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/natural_language_explanation.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/nested_feature.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/nested_feature_schema.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/notebook_completion.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/notebook_template.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/null_violation.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/organization_external_application_settings.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/organization_group.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/organization_search_result.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/organization_secret.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/page_data.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/pipeline.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/pipeline_reference.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/pipeline_step.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/pipeline_step_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/pipeline_step_version_logs.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/pipeline_step_version_reference.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/pipeline_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/pipeline_version_logs.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/point_in_time_feature.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/point_in_time_feature_info.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/point_in_time_group.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/point_in_time_group_feature.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/prediction_client.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/prediction_dataset.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/prediction_feature_group.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/prediction_input.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/prediction_log_record.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/prediction_operator_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/problem_type.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/project_config.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/project_feature_group.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/project_feature_group_schema.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/project_feature_group_schema_version.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/project_validation.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/python_function.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/python_function_validator.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/python_plot_function.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/range_violation.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/realtime_monitor.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/refresh_pipeline_run.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/refresh_policy.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/refresh_schedule.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/requirements.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/resolved_feature_group_template.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/return_class.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/schema.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/streaming_auth_token.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/streaming_client.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/streaming_connector.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/streaming_row_count.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/streaming_sample_code.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/test_point_predictions.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/upload.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/upload_part.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/use_case.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/use_case_requirements.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/user.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/user_exception.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/web_search_response.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/web_search_result.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai/webhook.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai.egg-info/dependency_links.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai.egg-info/requires.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai.egg-info/top_level.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/abacusai.egg-info/zip-safe +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/.buildinfo +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/.nojekyll +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/abacus_api/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/agent/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/agent_conversation/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/agent_data_document_info/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/agent_data_execution_result/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/agent_data_upload_result/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/agent_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/ai_building_task/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/algorithm/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/annotation/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/annotation_config/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/annotation_document/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/annotation_entry/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/annotations_status/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/abstract/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/ai_agents/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/ai_chat/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/batch_prediction/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/blob_input/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/connectors/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/dataset_application_connector/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/deployment/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/document_retriever/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/feature_group/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/monitor/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/monitor_alert/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/project/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/python_function_argument/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/python_functions/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/refresh/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/segments/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_class/vector_store/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_client_utils/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_endpoint/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/api_key/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/app_user_group/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/application_connector/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/batch_prediction/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/batch_prediction_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/batch_prediction_version_logs/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/categorical_range_violation/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/chat_bot_response/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/chat_message/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/chat_session/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/chatllm_referral_invite/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/code_source/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/concatenation_config/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/cpu_gpu_memory_specs/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/cryptography/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/custom_chat_instructions/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/custom_loss_function/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/custom_metric/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/custom_metric_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/custom_train_function_info/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/data_consistency_duplication/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/data_filter/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/data_metrics/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/data_prep_logs/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/data_quality_results/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/data_upload_result/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/database_column_feature_mapping/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/database_connector/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/database_connector_column/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/database_connector_schema/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/dataset/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/dataset_column/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/dataset_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/dataset_version_logs/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/deployment/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/deployment_auth_token/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/deployment_conversation/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/deployment_conversation_event/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/deployment_conversation_export/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/deployment_statistics/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/document/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/document_annotation/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/document_data/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/document_retriever/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/document_retriever_config/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/document_retriever_lookup_result/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/document_retriever_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/document_store/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/document_store_import/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/drift_distribution/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/drift_distributions/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/eda/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/eda_chart_description/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/eda_collinearity/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/eda_data_consistency/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/eda_feature_association/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/eda_feature_collinearity/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/eda_forecasting_analysis/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/eda_leakage_detection/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/eda_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/embedding_feature_drift_distribution/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/execute_feature_group_operation/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/execute_fg_operation/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/external_application/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/external_invite/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/external_invite_success/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/extracted_fields/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_distribution/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_drift_record/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_drift_summary/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_document/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_export/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_export_config/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_export_download_url/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_lineage/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_metrics/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_refresh_export_config/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_row/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_row_process/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_row_process_logs/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_row_process_summary/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_template/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_template_variable_options/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_group_version_logs/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_importance/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_mapping/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_performance_analysis/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/feature_record/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/file_connector/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/file_connector_instructions/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/file_connector_verification/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/finetuned_pretrained_model/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/forecasting_analysis_graph_data/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/forecasting_monitor_item_analysis/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/forecasting_monitor_summary/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/function_logs/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/generated_pit_feature_config_option/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/global_context/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/graph_dashboard/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/holdout_analysis/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/holdout_analysis_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/hosted_model_token/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/indexing_config/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/inferred_database_column_to_feature_mappings/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/inferred_feature_mappings/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/item_statistics/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/language_detection_prediction/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/leakage_duplication/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/llm_app/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/llm_code_block/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/llm_execution_preview/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/llm_execution_result/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/llm_generated_code/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/llm_input/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/llm_parameters/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/llm_response/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/llm_search_result/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/memory_options/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/messaging_connector_response/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_artifacts_export/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_blueprint_export/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_blueprint_stage/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_location/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_metrics/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_monitor/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_monitor_org_summary/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_monitor_summary/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_monitor_summary_from_org/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_monitor_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_monitor_version_metric_data/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_training_type_for_deployment/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_upload/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/model_version_feature_group_schema/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/modification_lock_info/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/module/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/monitor_alert/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/monitor_alert_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/monitor_drift_and_distributions/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/natural_language_explanation/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/nested_feature/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/nested_feature_schema/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/nlp_classification_prediction/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/nlp_sentiment_prediction/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/null_violation/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/organization_external_application_settings/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/organization_group/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/organization_search_result/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/organization_secret/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/page_data/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/pipeline/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/pipeline_reference/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/pipeline_step/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/pipeline_step_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/pipeline_step_version_logs/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/pipeline_step_version_reference/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/pipeline_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/pipeline_version_logs/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/point_in_time_feature/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/point_in_time_feature_info/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/point_in_time_group/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/point_in_time_group_feature/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/prediction_client/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/prediction_dataset/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/prediction_feature_group/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/prediction_input/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/prediction_log_record/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/prediction_metric/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/prediction_metric_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/prediction_operator/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/prediction_operator_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/pretrained_use_case/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/problem_type/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/project/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/project_config/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/project_dataset/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/project_feature_group/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/project_feature_group_schema/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/project_feature_group_schema_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/project_validation/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/python_function/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/python_function_validator/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/python_plot_function/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/range_violation/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/realtime_monitor/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/refresh_pipeline_run/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/refresh_policy/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/refresh_schedule/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/resolved_feature_group_template/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/return_class/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/schema/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/slack_connector_response/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/streaming_auth_token/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/streaming_client/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/streaming_connector/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/streaming_row_count/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/streaming_sample_code/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/test_point_predictions/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/type_violation/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/upload/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/upload_part/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/use_case/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/use_case_requirements/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/user/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/user_exception/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/vector_store/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/vector_store_config/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/vector_store_lookup_result/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/vector_store_version/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/web_search_response/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/web_search_result/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/autoapi/abacusai/webhook/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_sources/index.rst.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/_sphinx_javascript_frameworks_compat.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/basic.css +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/badge_only.css +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/Roboto-Slab-Bold.woff +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/Roboto-Slab-Regular.woff +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/fontawesome-webfont.eot +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/fontawesome-webfont.svg +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/fontawesome-webfont.ttf +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/fontawesome-webfont.woff +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/fontawesome-webfont.woff2 +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/lato-bold-italic.woff +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/lato-bold-italic.woff2 +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/lato-bold.woff +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/lato-bold.woff2 +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/lato-normal-italic.woff +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/lato-normal-italic.woff2 +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/lato-normal.woff +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/fonts/lato-normal.woff2 +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/css/theme.css +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/doctools.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/documentation_options.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/file.png +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/graphviz.css +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/jquery-3.5.1.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/jquery-3.6.0.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/jquery.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/js/badge_only.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/js/html5shiv-printshiv.min.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/js/html5shiv.min.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/js/theme.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/language_data.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/minus.png +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/plus.png +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/pygments.css +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/searchtools.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/sphinx_highlight.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/underscore-1.13.1.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/_static/underscore.js +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/abacus_api/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/agent/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/agent_conversation/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/agent_data_document_info/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/agent_data_execution_result/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/agent_data_upload_result/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/agent_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/ai_building_task/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/algorithm/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/annotation/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/annotation_config/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/annotation_document/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/annotation_entry/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/annotations_status/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/abstract/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/ai_agents/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/ai_chat/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/batch_prediction/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/blob_input/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/connectors/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/dataset_application_connector/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/deployment/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/document_retriever/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/feature_group/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/monitor/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/monitor_alert/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/project/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/python_function_argument/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/python_functions/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/refresh/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/segments/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_class/vector_store/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_client_utils/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_endpoint/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/api_key/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/app_user_group/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/application_connector/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/batch_prediction/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/batch_prediction_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/batch_prediction_version_logs/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/categorical_range_violation/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/chat_bot_response/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/chat_message/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/chat_session/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/chatllm_referral_invite/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/code_source/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/concatenation_config/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/cpu_gpu_memory_specs/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/cryptography/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/custom_chat_instructions/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/custom_loss_function/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/custom_metric/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/custom_metric_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/custom_train_function_info/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/data_consistency_duplication/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/data_filter/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/data_metrics/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/data_prep_logs/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/data_quality_results/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/data_upload_result/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/database_column_feature_mapping/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/database_connector/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/database_connector_column/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/database_connector_schema/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/dataset/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/dataset_column/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/dataset_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/dataset_version_logs/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/deployment/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/deployment_auth_token/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/deployment_conversation/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/deployment_conversation_event/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/deployment_conversation_export/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/deployment_statistics/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/document/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/document_annotation/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/document_data/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/document_retriever/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/document_retriever_config/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/document_retriever_lookup_result/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/document_retriever_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/document_store/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/document_store_import/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/drift_distribution/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/drift_distributions/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/eda/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/eda_chart_description/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/eda_collinearity/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/eda_data_consistency/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/eda_feature_association/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/eda_feature_collinearity/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/eda_forecasting_analysis/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/eda_leakage_detection/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/eda_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/embedding_feature_drift_distribution/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/execute_feature_group_operation/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/execute_fg_operation/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/external_application/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/external_invite/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/external_invite_success/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/extracted_fields/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_distribution/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_drift_record/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_drift_summary/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_document/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_export/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_export_config/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_export_download_url/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_lineage/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_metrics/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_refresh_export_config/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_row/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_row_process/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_row_process_logs/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_row_process_summary/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_template/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_template_variable_options/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_group_version_logs/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_importance/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_mapping/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_performance_analysis/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/feature_record/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/file_connector/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/file_connector_instructions/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/file_connector_verification/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/finetuned_pretrained_model/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/forecasting_analysis_graph_data/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/forecasting_monitor_item_analysis/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/forecasting_monitor_summary/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/function_logs/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/generated_pit_feature_config_option/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/global_context/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/graph_dashboard/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/holdout_analysis/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/holdout_analysis_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/hosted_model_token/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/indexing_config/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/inferred_database_column_to_feature_mappings/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/inferred_feature_mappings/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/item_statistics/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/language_detection_prediction/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/leakage_duplication/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/llm_app/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/llm_code_block/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/llm_execution_preview/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/llm_execution_result/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/llm_generated_code/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/llm_input/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/llm_parameters/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/llm_response/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/llm_search_result/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/memory_options/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/messaging_connector_response/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_artifacts_export/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_blueprint_export/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_blueprint_stage/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_location/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_metrics/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_monitor/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_monitor_org_summary/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_monitor_summary/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_monitor_summary_from_org/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_monitor_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_monitor_version_metric_data/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_training_type_for_deployment/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_upload/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/model_version_feature_group_schema/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/modification_lock_info/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/module/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/monitor_alert/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/monitor_alert_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/monitor_drift_and_distributions/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/natural_language_explanation/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/nested_feature/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/nested_feature_schema/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/nlp_classification_prediction/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/nlp_sentiment_prediction/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/null_violation/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/organization_external_application_settings/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/organization_group/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/organization_search_result/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/organization_secret/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/page_data/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/pipeline/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/pipeline_reference/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/pipeline_step/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/pipeline_step_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/pipeline_step_version_logs/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/pipeline_step_version_reference/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/pipeline_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/pipeline_version_logs/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/point_in_time_feature/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/point_in_time_feature_info/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/point_in_time_group/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/point_in_time_group_feature/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/prediction_client/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/prediction_dataset/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/prediction_feature_group/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/prediction_input/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/prediction_log_record/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/prediction_metric/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/prediction_metric_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/prediction_operator/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/prediction_operator_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/pretrained_use_case/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/problem_type/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/project/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/project_config/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/project_dataset/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/project_feature_group/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/project_feature_group_schema/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/project_feature_group_schema_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/project_validation/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/python_function/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/python_function_validator/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/python_plot_function/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/range_violation/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/realtime_monitor/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/refresh_pipeline_run/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/refresh_policy/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/refresh_schedule/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/resolved_feature_group_template/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/return_class/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/schema/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/slack_connector_response/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/streaming_auth_token/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/streaming_client/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/streaming_connector/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/streaming_row_count/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/streaming_sample_code/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/test_point_predictions/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/type_violation/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/upload/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/upload_part/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/use_case/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/use_case_requirements/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/user/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/user_exception/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/vector_store/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/vector_store_config/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/vector_store_lookup_result/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/vector_store_version/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/web_search_response/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/web_search_result/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/autoapi/abacusai/webhook/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/index.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/py-modindex.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/docs/search.html +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/examples/example_gen_ai_commands.ipynb +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/examples/fullscript.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/examples/prompting_iteration.ipynb +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/featurestore.md +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/requirements.txt +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/setup.cfg +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/sphinx/build_docs +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/sphinx/conf.py +0 -0
- {abacusai-1.4.2 → abacusai-1.4.4}/sphinx/index.rst +0 -0
|
@@ -126,18 +126,20 @@ class WorkflowNodeInputMapping(ApiClass):
|
|
|
126
126
|
def to_dict(self):
|
|
127
127
|
return {
|
|
128
128
|
'name': self.name,
|
|
129
|
-
'variable_type': self.variable_type,
|
|
129
|
+
'variable_type': self.variable_type.value,
|
|
130
130
|
'variable_source': self.variable_source,
|
|
131
131
|
'is_required': self.is_required
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
@classmethod
|
|
135
135
|
def from_dict(cls, mapping: dict):
|
|
136
|
+
if not isinstance(mapping, dict):
|
|
137
|
+
raise ValueError('input_mapping', 'Invalid workflow node input mapping. Provided mapping should be a dictionary.')
|
|
136
138
|
if any(field not in mapping for field in ['name', 'variable_type']):
|
|
137
139
|
raise ValueError('input_mapping', f'Invalid workflow node input mapping "{mapping}". Must contain keys - name, variable_type')
|
|
138
140
|
return cls(
|
|
139
141
|
name=mapping['name'],
|
|
140
|
-
variable_type=mapping['variable_type'],
|
|
142
|
+
variable_type=enums.WorkflowNodeInputType(mapping['variable_type']),
|
|
141
143
|
variable_source=mapping.get('variable_source'),
|
|
142
144
|
is_required=mapping.get('is_required', True)
|
|
143
145
|
)
|
|
@@ -158,16 +160,18 @@ class WorkflowNodeOutputMapping(ApiClass):
|
|
|
158
160
|
def to_dict(self):
|
|
159
161
|
return {
|
|
160
162
|
'name': self.name,
|
|
161
|
-
'variable_type': self.variable_type
|
|
163
|
+
'variable_type': self.variable_type.value
|
|
162
164
|
}
|
|
163
165
|
|
|
164
166
|
@classmethod
|
|
165
167
|
def from_dict(cls, mapping: dict):
|
|
168
|
+
if not isinstance(mapping, dict):
|
|
169
|
+
raise ValueError('output_mapping', 'Invalid workflow node output mapping. Provided mapping should be a dictionary.')
|
|
166
170
|
if 'name' not in mapping:
|
|
167
171
|
raise ValueError('output_mapping', 'Invalid workflow node output mapping. Must contain keys - name.')
|
|
168
172
|
return cls(
|
|
169
173
|
name=mapping['name'],
|
|
170
|
-
variable_type=mapping.get('variable_type',
|
|
174
|
+
variable_type=enums.WorkflowNodeOutputType(mapping.get('variable_type', 'STRING'))
|
|
171
175
|
)
|
|
172
176
|
|
|
173
177
|
|
|
@@ -42,6 +42,7 @@ class DocumentProcessingConfig(ApiClass):
|
|
|
42
42
|
remove_header_footer (bool): Whether to remove headers and footers. Defaults to False. This option only takes effect when extract_bounding_boxes is True.
|
|
43
43
|
remove_watermarks (bool): Whether to remove watermarks. By default, it will be decided automatically based on the OCR mode and the document type. This option only takes effect when extract_bounding_boxes is True.
|
|
44
44
|
convert_to_markdown (bool): Whether to convert extracted text to markdown. Defaults to False. This option only takes effect when extract_bounding_boxes is True.
|
|
45
|
+
mask_pii (bool): Whether to mask personally identifiable information (PII) in the document text/tokens. Defaults to False.
|
|
45
46
|
"""
|
|
46
47
|
# NOTE: The defaults should match with clouddb.document_processing_results table defaults
|
|
47
48
|
extract_bounding_boxes: bool = False
|
|
@@ -50,6 +51,7 @@ class DocumentProcessingConfig(ApiClass):
|
|
|
50
51
|
remove_header_footer: bool = False
|
|
51
52
|
remove_watermarks: bool = True
|
|
52
53
|
convert_to_markdown: bool = False
|
|
54
|
+
mask_pii: bool = False
|
|
53
55
|
|
|
54
56
|
|
|
55
57
|
@dataclasses.dataclass
|
|
@@ -422,6 +422,7 @@ class PythonFunctionOutputArgumentType(ApiEnum):
|
|
|
422
422
|
class VectorStoreTextEncoder(ApiEnum):
|
|
423
423
|
E5 = 'E5'
|
|
424
424
|
OPENAI = 'OPENAI'
|
|
425
|
+
OPENAI_LARGE = 'OPENAI_LARGE'
|
|
425
426
|
SENTENCE_BERT = 'SENTENCE_BERT'
|
|
426
427
|
E5_SMALL = 'E5_SMALL'
|
|
427
428
|
CODE_BERT = 'CODE_BERT'
|
|
@@ -432,27 +433,19 @@ class LLMName(ApiEnum):
|
|
|
432
433
|
OPENAI_GPT4_32K = 'OPENAI_GPT4_32K'
|
|
433
434
|
OPENAI_GPT4_128K = 'OPENAI_GPT4_128K'
|
|
434
435
|
OPENAI_GPT4_128K_LATEST = 'OPENAI_GPT4_128K_LATEST'
|
|
435
|
-
OPENAI_GPT4_VISION = 'OPENAI_GPT4_VISION'
|
|
436
436
|
OPENAI_GPT4O = 'OPENAI_GPT4O'
|
|
437
437
|
OPENAI_GPT4O_MINI = 'OPENAI_GPT4O_MINI'
|
|
438
438
|
OPENAI_GPT3_5 = 'OPENAI_GPT3_5'
|
|
439
439
|
OPENAI_GPT3_5_TEXT = 'OPENAI_GPT3_5_TEXT'
|
|
440
|
+
LLAMA3_1_405B = 'LLAMA3_1_405B'
|
|
441
|
+
LLAMA3_1_70B = 'LLAMA3_1_70B'
|
|
442
|
+
LLAMA3_1_8B = 'LLAMA3_1_8B'
|
|
440
443
|
LLAMA3_LARGE_CHAT = 'LLAMA3_LARGE_CHAT'
|
|
441
|
-
GROQ_LLAMA3_LARGE_CHAT = 'GROQ_LLAMA3_LARGE_CHAT'
|
|
442
|
-
CLAUDE_V2_1 = 'CLAUDE_V2_1'
|
|
443
444
|
CLAUDE_V3_OPUS = 'CLAUDE_V3_OPUS'
|
|
444
445
|
CLAUDE_V3_SONNET = 'CLAUDE_V3_SONNET'
|
|
445
446
|
CLAUDE_V3_HAIKU = 'CLAUDE_V3_HAIKU'
|
|
446
447
|
CLAUDE_V3_5_SONNET = 'CLAUDE_V3_5_SONNET'
|
|
447
|
-
ABACUS_GIRAFFE = 'ABACUS_GIRAFFE'
|
|
448
|
-
ABACUS_GIRAFFE_LARGE = 'ABACUS_GIRAFFE_LARGE'
|
|
449
|
-
LLAMA2_CHAT = 'LLAMA2_CHAT'
|
|
450
|
-
PALM = 'PALM'
|
|
451
|
-
PALM_TEXT = 'PALM_TEXT'
|
|
452
|
-
GEMINI_PRO = 'GEMINI_PRO'
|
|
453
448
|
GEMINI_1_5_PRO = 'GEMINI_1_5_PRO'
|
|
454
|
-
MIXTRAL_CHAT = 'MIXTRAL_CHAT'
|
|
455
|
-
MISTRAL_MEDIUM = 'MISTRAL_MEDIUM'
|
|
456
449
|
ABACUS_SMAUG3 = 'ABACUS_SMAUG3'
|
|
457
450
|
GEMINI_1_5_FLASH = 'GEMINI_1_5_FLASH'
|
|
458
451
|
|
|
@@ -542,6 +535,7 @@ class OcrMode(ApiEnum):
|
|
|
542
535
|
COMPREHENSIVE_TABLE_MD = 'COMPREHENSIVE_TABLE_MD'
|
|
543
536
|
TESSERACT_FAST = 'TESSERACT_FAST'
|
|
544
537
|
LLM = 'LLM'
|
|
538
|
+
AUGMENTED_LLM = 'AUGMENTED_LLM'
|
|
545
539
|
|
|
546
540
|
|
|
547
541
|
class StdDevThresholdType(ApiEnum):
|
|
@@ -460,8 +460,8 @@ class ChatLLMTrainingConfig(TrainingConfig):
|
|
|
460
460
|
filter_columns (list): Allow users to filter the document retrievers on these metadata columns.
|
|
461
461
|
include_general_knowledge (bool): Allow the LLM to rely not just on RAG search results, but to fall back on general knowledge. Disabled by default.
|
|
462
462
|
enable_web_search (bool) : Allow the LLM to use Web Search Engines to retrieve information for better results.
|
|
463
|
-
behavior_instructions (str): Customize the overall
|
|
464
|
-
response_instructions (str): Customized instructions for how the
|
|
463
|
+
behavior_instructions (str): Customize the overall behaviour of the model. This controls things like - when to execute code (if enabled), write sql query, search web (if enabled), etc.
|
|
464
|
+
response_instructions (str): Customized instructions for how the model should respond.
|
|
465
465
|
enable_llm_rewrite (bool): If enabled, an LLM will rewrite the RAG queries sent to document retriever. Disabled by default.
|
|
466
466
|
column_filtering_instructions (str): Instructions for a LLM call to automatically generate filter expressions on document metadata to retrieve relevant documents for the conversation.
|
|
467
467
|
keyword_requirement_instructions (str): Instructions for a LLM call to automatically generate keyword requirements to retrieve relevant documents for the conversation.
|
|
@@ -469,14 +469,17 @@ class ChatLLMTrainingConfig(TrainingConfig):
|
|
|
469
469
|
max_search_results (int): Maximum number of search results in the retrieval augmentation step. If we know that the questions are likely to have snippets which are easily matched in the documents, then a lower number will help with accuracy.
|
|
470
470
|
data_feature_group_ids: (List[str]): List of feature group IDs to use to possibly query for the ChatLLM. The created ChatLLM is commonly referred to as DataLLM.
|
|
471
471
|
data_prompt_context (str): Prompt context for the data feature group IDs.
|
|
472
|
+
data_prompt_table_context (Dict[str, str]): Dict of table name and table context pairs to provide table wise context for each structured data table.
|
|
472
473
|
hide_sql_and_code (bool): When running data queries, this will hide the generated SQL and Code in the response.
|
|
473
474
|
disable_data_summarization (bool): After executing a query summarize the reponse and reply back with only the table and query run.
|
|
475
|
+
data_columns_to_ignore (List[str]): Columns to ignore while encoding information about structured data tables in context for the LLM. A list of strings of format "<table_name>.<column_name>"
|
|
474
476
|
search_score_cutoff (float): Minimum search score to consider a document as a valid search result.
|
|
475
477
|
include_bm25_retrieval (bool): Combine BM25 search score with vector search using reciprocal rank fusion.
|
|
476
|
-
database_connector_id (str): Database connector ID to use for the
|
|
478
|
+
database_connector_id (str): Database connector ID to use for connecting external database that gives access to structured data to the LLM.
|
|
477
479
|
database_connector_tables (List[str]): List of tables to use from the database connector for the ChatLLM.
|
|
478
480
|
enable_code_execution (bool): Enable python code execution in the ChatLLM. This equips the LLM with a python kernel in which all its code is executed.
|
|
479
481
|
enable_response_caching (bool): Enable caching of LLM responses to speed up response times and improve reproducibility.
|
|
482
|
+
unknown_answer_phrase (str): Fallback response when the LLM can't find an answer.
|
|
480
483
|
"""
|
|
481
484
|
document_retrievers: List[str] = dataclasses.field(default=None)
|
|
482
485
|
num_completion_tokens: int = dataclasses.field(default=None)
|
|
@@ -494,8 +497,10 @@ class ChatLLMTrainingConfig(TrainingConfig):
|
|
|
494
497
|
max_search_results: int = dataclasses.field(default=None)
|
|
495
498
|
data_feature_group_ids: List[str] = dataclasses.field(default=None)
|
|
496
499
|
data_prompt_context: str = dataclasses.field(default=None)
|
|
500
|
+
data_prompt_table_context: Dict[str, str] = dataclasses.field(default=None)
|
|
497
501
|
hide_sql_and_code: bool = dataclasses.field(default=None)
|
|
498
502
|
disable_data_summarization: bool = dataclasses.field(default=None)
|
|
503
|
+
data_columns_to_ignore: List[str] = dataclasses.field(default=None)
|
|
499
504
|
search_score_cutoff: float = dataclasses.field(default=None)
|
|
500
505
|
include_bm25_retrieval: bool = dataclasses.field(default=None)
|
|
501
506
|
database_connector_id: str = dataclasses.field(default=None)
|
|
@@ -504,6 +509,7 @@ class ChatLLMTrainingConfig(TrainingConfig):
|
|
|
504
509
|
metadata_columns: list = dataclasses.field(default=None, metadata={'deprecated': True})
|
|
505
510
|
lookup_rewrite_instructions: str = dataclasses.field(default=None, metadata={'deprecated': True})
|
|
506
511
|
enable_response_caching: bool = dataclasses.field(default=None)
|
|
512
|
+
unknown_answer_phrase: str = dataclasses.field(default=None)
|
|
507
513
|
|
|
508
514
|
def __post_init__(self):
|
|
509
515
|
self.problem_type = enums.ProblemType.CHAT_LLM
|
|
@@ -180,6 +180,194 @@ def load_as_pandas_from_avro_files(files: List[str], download_method: Callable,
|
|
|
180
180
|
return data_df
|
|
181
181
|
|
|
182
182
|
|
|
183
|
+
def validate_workflow_node_inputs(nodes_info, agent_workflow_node_id, keyword_arguments: dict, sample_user_inputs: dict, filtered_workflow_vars: dict):
|
|
184
|
+
from .api_class import WorkflowNodeInputType
|
|
185
|
+
input_mappings = nodes_info[agent_workflow_node_id].get(
|
|
186
|
+
'input_mappings', {})
|
|
187
|
+
input_schema = nodes_info[agent_workflow_node_id].get('input_schema', {})
|
|
188
|
+
if input_schema.get('runtime_schema', False):
|
|
189
|
+
keyword_arguments = {input_schema.get(
|
|
190
|
+
'schema_prop'): keyword_arguments}
|
|
191
|
+
for input_mapping in input_mappings:
|
|
192
|
+
input_name = input_mapping['name']
|
|
193
|
+
variable_type = input_mapping['variable_type']
|
|
194
|
+
is_required = input_mapping.get('is_required', True)
|
|
195
|
+
variable_source = input_mapping['variable_source']
|
|
196
|
+
if variable_type == 'WORKFLOW_VARIABLE':
|
|
197
|
+
if variable_source not in filtered_workflow_vars:
|
|
198
|
+
raise ValueError(
|
|
199
|
+
f'The stage corresponding to "{agent_workflow_node_id}" requires variables from {variable_source} stage which are not there.')
|
|
200
|
+
if input_name not in filtered_workflow_vars[variable_source] and is_required:
|
|
201
|
+
raise ValueError(
|
|
202
|
+
f'Missing required input "{input_name}" in workflow vars for workflow node "{agent_workflow_node_id}".')
|
|
203
|
+
else:
|
|
204
|
+
keyword_arguments[input_name] = filtered_workflow_vars[variable_source][input_name]
|
|
205
|
+
elif variable_type == WorkflowNodeInputType.USER_INPUT:
|
|
206
|
+
if sample_user_inputs and input_name in sample_user_inputs:
|
|
207
|
+
keyword_arguments[input_name] = sample_user_inputs[input_name]
|
|
208
|
+
elif variable_source in filtered_workflow_vars and input_name in filtered_workflow_vars[variable_source]:
|
|
209
|
+
keyword_arguments[input_name] = filtered_workflow_vars[variable_source][input_name]
|
|
210
|
+
else:
|
|
211
|
+
if is_required:
|
|
212
|
+
raise ValueError(
|
|
213
|
+
f'User input for "{input_name}" is required for the "{agent_workflow_node_id}" node.')
|
|
214
|
+
else:
|
|
215
|
+
keyword_arguments[input_name] = None
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
def run(nodes: List[dict], primary_start_node: str, graph_info: dict, sample_user_inputs: dict = None, agent_workflow_node_id: str = None, workflow_vars: dict = {}, topological_dfs_stack: List = []):
|
|
219
|
+
from .api_class import WorkflowNodeInputType
|
|
220
|
+
source_code = graph_info['source_code']
|
|
221
|
+
exec(source_code, globals())
|
|
222
|
+
|
|
223
|
+
nodes_info: dict = {node['name']: node for node in nodes}
|
|
224
|
+
traversal_orders = graph_info['traversal_orders']
|
|
225
|
+
nodes_ancestors = graph_info['nodes_ancestors']
|
|
226
|
+
nodes_inedges = graph_info['nodes_inedges']
|
|
227
|
+
primary_start_node = primary_start_node or graph_info['default_root_node']
|
|
228
|
+
|
|
229
|
+
primary_traversal_order = traversal_orders[primary_start_node]
|
|
230
|
+
run_info = {}
|
|
231
|
+
workflow_vars = workflow_vars.copy()
|
|
232
|
+
next_agent_workflow_node_id = None
|
|
233
|
+
|
|
234
|
+
if agent_workflow_node_id:
|
|
235
|
+
next_agent_workflow_node_id = agent_workflow_node_id
|
|
236
|
+
if next_agent_workflow_node_id not in traversal_orders.keys():
|
|
237
|
+
if next_agent_workflow_node_id not in nodes_info:
|
|
238
|
+
raise ValueError(
|
|
239
|
+
f'The provided workflow node id "{next_agent_workflow_node_id}" is not part of the workflow. Please provide a valid node id.')
|
|
240
|
+
else:
|
|
241
|
+
topological_dfs_stack.append(next_agent_workflow_node_id)
|
|
242
|
+
else:
|
|
243
|
+
topological_dfs_stack = [next_agent_workflow_node_id]
|
|
244
|
+
else:
|
|
245
|
+
next_agent_workflow_node_id = primary_start_node
|
|
246
|
+
topological_dfs_stack = [primary_start_node]
|
|
247
|
+
|
|
248
|
+
flow_traversal_order = primary_traversal_order
|
|
249
|
+
for root, traversal_order in traversal_orders.items():
|
|
250
|
+
if next_agent_workflow_node_id in traversal_order:
|
|
251
|
+
flow_traversal_order = traversal_order
|
|
252
|
+
break
|
|
253
|
+
|
|
254
|
+
run_history = []
|
|
255
|
+
workflow_node_outputs = {}
|
|
256
|
+
while (True):
|
|
257
|
+
agent_workflow_node_id = next_agent_workflow_node_id
|
|
258
|
+
node_ancestors = nodes_ancestors[agent_workflow_node_id]
|
|
259
|
+
|
|
260
|
+
# To ensure the node takes inputs only from it's ancestors.
|
|
261
|
+
# workflow_vars must always contain an entry for ancestor, the error is somewhere else if this ever errors out.
|
|
262
|
+
filtered_workflow_vars = {}
|
|
263
|
+
for ancestor in node_ancestors:
|
|
264
|
+
if ancestor not in workflow_vars:
|
|
265
|
+
raise ValueError(
|
|
266
|
+
f'Ancestor "{ancestor}" of node "{agent_workflow_node_id}" is not executed yet. Please make sure the ancestor nodes are executed before the current node.')
|
|
267
|
+
else:
|
|
268
|
+
filtered_workflow_vars[ancestor] = workflow_vars[ancestor]
|
|
269
|
+
|
|
270
|
+
arguments = []
|
|
271
|
+
keyword_arguments = {}
|
|
272
|
+
validate_workflow_node_inputs(nodes_info, agent_workflow_node_id,
|
|
273
|
+
keyword_arguments, sample_user_inputs, filtered_workflow_vars)
|
|
274
|
+
|
|
275
|
+
try:
|
|
276
|
+
func = eval(nodes_info[agent_workflow_node_id]['function_name'])
|
|
277
|
+
node_response = func(*arguments, **keyword_arguments)
|
|
278
|
+
workflow_node_outputs[agent_workflow_node_id] = node_response.to_dict(
|
|
279
|
+
)
|
|
280
|
+
node_workflow_vars = process_node_response(node_response)
|
|
281
|
+
except Exception as error:
|
|
282
|
+
raise ValueError(
|
|
283
|
+
f'Error in running workflow node {agent_workflow_node_id}: {error}')
|
|
284
|
+
|
|
285
|
+
workflow_vars[agent_workflow_node_id] = node_workflow_vars
|
|
286
|
+
next_agent_workflow_node_id = None
|
|
287
|
+
needs_user_input = False
|
|
288
|
+
|
|
289
|
+
potential_next_index = flow_traversal_order.index(
|
|
290
|
+
topological_dfs_stack[-1]) + 1
|
|
291
|
+
potential_next_agent_workflow_node_id = None
|
|
292
|
+
while (potential_next_index < len(flow_traversal_order)):
|
|
293
|
+
potential_next_agent_workflow_node_id = flow_traversal_order[potential_next_index]
|
|
294
|
+
incoming_edges = nodes_inedges[potential_next_agent_workflow_node_id]
|
|
295
|
+
valid_next_node = True
|
|
296
|
+
for source, _, details in incoming_edges:
|
|
297
|
+
if source not in topological_dfs_stack:
|
|
298
|
+
valid_next_node = False
|
|
299
|
+
potential_next_index += 1
|
|
300
|
+
break
|
|
301
|
+
else:
|
|
302
|
+
edge_evaluate_result = evaluate_edge_condition(
|
|
303
|
+
source, potential_next_agent_workflow_node_id, details, workflow_vars)
|
|
304
|
+
if not edge_evaluate_result:
|
|
305
|
+
valid_next_node = False
|
|
306
|
+
potential_next_index += 1
|
|
307
|
+
break
|
|
308
|
+
if valid_next_node:
|
|
309
|
+
next_agent_workflow_node_id = potential_next_agent_workflow_node_id
|
|
310
|
+
break
|
|
311
|
+
|
|
312
|
+
if next_agent_workflow_node_id:
|
|
313
|
+
next_node_input_mappings = nodes_info[next_agent_workflow_node_id].get(
|
|
314
|
+
'input_mappings', [])
|
|
315
|
+
needs_user_input = any([input_mapping['variable_type'] ==
|
|
316
|
+
WorkflowNodeInputType.USER_INPUT for input_mapping in next_node_input_mappings])
|
|
317
|
+
|
|
318
|
+
if needs_user_input:
|
|
319
|
+
run_history.append(
|
|
320
|
+
f'Workflow node {agent_workflow_node_id} completed with next node {next_agent_workflow_node_id} and needs user_inputs')
|
|
321
|
+
else:
|
|
322
|
+
run_history.append(
|
|
323
|
+
f'Workflow node {agent_workflow_node_id} completed with next node {next_agent_workflow_node_id}')
|
|
324
|
+
topological_dfs_stack.append(next_agent_workflow_node_id)
|
|
325
|
+
|
|
326
|
+
if next_agent_workflow_node_id is None or needs_user_input:
|
|
327
|
+
break
|
|
328
|
+
|
|
329
|
+
run_info['workflow_node_outputs'] = workflow_node_outputs
|
|
330
|
+
run_info['run_history'] = run_history
|
|
331
|
+
|
|
332
|
+
workflow_info = {}
|
|
333
|
+
workflow_info['workflow_vars'] = workflow_vars
|
|
334
|
+
workflow_info['topological_dfs_stack'] = topological_dfs_stack
|
|
335
|
+
workflow_info['run_info'] = run_info
|
|
336
|
+
|
|
337
|
+
return workflow_info
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
def evaluate_edge_condition(source, target, details, workflow_vars):
|
|
341
|
+
try:
|
|
342
|
+
condition = details.get('EXECUTION_CONDITION')
|
|
343
|
+
if condition:
|
|
344
|
+
result = execute_python_source(
|
|
345
|
+
condition, workflow_vars.get(source, {}))
|
|
346
|
+
return result
|
|
347
|
+
return True
|
|
348
|
+
except Exception as e:
|
|
349
|
+
raise ValueError(
|
|
350
|
+
f"Error evaluating edge '{source}'-->'{target}': {str(e)}")
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
def execute_python_source(python_expression, variables):
|
|
354
|
+
try:
|
|
355
|
+
# Evaluate the expression using the variables dictionary
|
|
356
|
+
result = eval(python_expression, {}, variables)
|
|
357
|
+
return result
|
|
358
|
+
except Exception as e:
|
|
359
|
+
# Handle any exceptions that may occur during evaluation
|
|
360
|
+
raise ValueError(f'Error evaluating expression: {e}')
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
def process_node_response(node_response):
|
|
364
|
+
output_vars = {}
|
|
365
|
+
for variable in node_response.section_data_list:
|
|
366
|
+
for key, value in variable.items():
|
|
367
|
+
output_vars[key] = value
|
|
368
|
+
return output_vars
|
|
369
|
+
|
|
370
|
+
|
|
183
371
|
class StreamType(Enum):
|
|
184
372
|
MESSAGE = 'message'
|
|
185
373
|
SECTION_OUTPUT = 'section_output'
|
|
@@ -47,10 +47,11 @@ from .api_class import (
|
|
|
47
47
|
from .api_class.abstract import get_clean_function_source_code, get_clean_function_source_code_for_agent, snake_case
|
|
48
48
|
from .api_class.ai_agents import WorkflowGraph
|
|
49
49
|
from .api_class.blob_input import Blob, BlobInput
|
|
50
|
+
from .api_class.enums import AgentInterface
|
|
50
51
|
from .api_class.segments import ResponseSection, Segment
|
|
51
52
|
from .api_client_utils import (
|
|
52
53
|
INVALID_PANDAS_COLUMN_NAME_CHARACTERS, StreamingHandler, StreamType,
|
|
53
|
-
clean_column_name, get_object_from_context
|
|
54
|
+
clean_column_name, get_object_from_context, run
|
|
54
55
|
)
|
|
55
56
|
from .api_endpoint import ApiEndpoint
|
|
56
57
|
from .api_key import ApiKey
|
|
@@ -272,14 +273,22 @@ class AgentResponse:
|
|
|
272
273
|
self.data_list.append(arg)
|
|
273
274
|
else:
|
|
274
275
|
raise Exception(
|
|
275
|
-
'AgentResponse can only contain Blob, ResponseSection or json serializable objects')
|
|
276
|
+
'AgentResponse can only contain Blob, ResponseSection or json serializable objects if key is not provided')
|
|
276
277
|
|
|
277
278
|
for key, value in kwargs.items():
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
279
|
+
self.section_data_list.append({key: value})
|
|
280
|
+
|
|
281
|
+
def to_dict(self):
|
|
282
|
+
result = {}
|
|
283
|
+
if self.data_list:
|
|
284
|
+
result['data_list'] = self.data_list
|
|
285
|
+
for section_data in self.section_data_list:
|
|
286
|
+
for k, v in section_data.items():
|
|
287
|
+
if isinstance(v, ResponseSection):
|
|
288
|
+
result[k] = v.to_dict()
|
|
289
|
+
else:
|
|
290
|
+
result[k] = v
|
|
291
|
+
return result
|
|
283
292
|
|
|
284
293
|
|
|
285
294
|
class ClientOptions:
|
|
@@ -595,7 +604,7 @@ class BaseApiClient:
|
|
|
595
604
|
client_options (ClientOptions): Optional API client configurations
|
|
596
605
|
skip_version_check (bool): If true, will skip checking the server's current API version on initializing the client
|
|
597
606
|
"""
|
|
598
|
-
client_version = '1.4.
|
|
607
|
+
client_version = '1.4.4'
|
|
599
608
|
|
|
600
609
|
def __init__(self, api_key: str = None, server: str = None, client_options: ClientOptions = None, skip_version_check: bool = False, include_tb: bool = False):
|
|
601
610
|
self.api_key = api_key
|
|
@@ -3520,6 +3529,32 @@ class ApiClient(ReadOnlyClient):
|
|
|
3520
3529
|
setattr(the_main, name, getattr(module, name))
|
|
3521
3530
|
return module
|
|
3522
3531
|
|
|
3532
|
+
def run_workflow_graph(self, workflow_graph: WorkflowGraph, sample_user_inputs: dict = {}, agent_workflow_node_id: str = None, agent_interface: AgentInterface = AgentInterface.DEFAULT, package_requirements: list = []):
|
|
3533
|
+
"""
|
|
3534
|
+
Validates the workflow graph for an AI Agent.
|
|
3535
|
+
|
|
3536
|
+
Args:
|
|
3537
|
+
workflow_graph (WorkflowGraph): The workflow graph to validate.
|
|
3538
|
+
sample_user_inputs (dict): Contains sample values for variables of type user_input for starting node
|
|
3539
|
+
agent_workflow_node_id (str): Node id from which we want to run workflow
|
|
3540
|
+
agent_interface (AgentInterface): The interface that the agent will be deployed with.
|
|
3541
|
+
package_requirements (list): A list of package requirement strings. For example: ['numpy==1.2.3', 'pandas>=1.4.0'].
|
|
3542
|
+
|
|
3543
|
+
Returns:
|
|
3544
|
+
dict: The output variables for every node in workflow which has executed.
|
|
3545
|
+
"""
|
|
3546
|
+
graph_info = self.extract_graph_information(
|
|
3547
|
+
workflow_graph=workflow_graph, agent_interface=agent_interface, package_requirements=package_requirements)
|
|
3548
|
+
workflow_vars = get_object_from_context(
|
|
3549
|
+
self, _request_context, 'workflow_vars', dict) or {}
|
|
3550
|
+
topological_dfs_stack = get_object_from_context(
|
|
3551
|
+
self, _request_context, 'topological_dfs_stack', list) or []
|
|
3552
|
+
workflow_info = run(nodes=workflow_graph['nodes'], primary_start_node=workflow_graph['primary_start_node'], graph_info=graph_info,
|
|
3553
|
+
sample_user_inputs=sample_user_inputs, agent_workflow_node_id=agent_workflow_node_id, workflow_vars=workflow_vars, topological_dfs_stack=topological_dfs_stack)
|
|
3554
|
+
_request_context.workflow_vars = workflow_info['workflow_vars']
|
|
3555
|
+
_request_context.topological_dfs_stack = workflow_info['topological_dfs_stack']
|
|
3556
|
+
return workflow_info['run_info']
|
|
3557
|
+
|
|
3523
3558
|
def create_agent_from_function(self, project_id: str, agent_function: callable, name: str = None, memory: int = None, package_requirements: list = None, description: str = None, evaluation_feature_group_id: str = None, workflow_graph: WorkflowGraph = None):
|
|
3524
3559
|
"""
|
|
3525
3560
|
[Deprecated]
|
|
@@ -3883,6 +3918,7 @@ class ApiClient(ReadOnlyClient):
|
|
|
3883
3918
|
body['extraArgs'] = extra_args
|
|
3884
3919
|
headers = {'APIKEY': self.api_key}
|
|
3885
3920
|
body['connectionId'] = uuid4().hex
|
|
3921
|
+
self._clean_api_objects(body)
|
|
3886
3922
|
for _ in range(3):
|
|
3887
3923
|
response = self._request(
|
|
3888
3924
|
api_endpont, method='POST', body=body, headers=headers)
|
|
@@ -5360,7 +5396,7 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
5360
5396
|
DatasetVersion: The new Dataset Version created."""
|
|
5361
5397
|
return self._call_api('createDatasetVersionFromFileConnector', 'POST', query_params={'datasetId': dataset_id}, body={'location': location, 'fileFormat': file_format, 'csvDelimiter': csv_delimiter, 'mergeFileSchemas': merge_file_schemas, 'parsingConfig': parsing_config}, parse_type=DatasetVersion)
|
|
5362
5398
|
|
|
5363
|
-
def create_dataset_from_database_connector(self, table_name: str, database_connector_id: str, object_name: str = None, columns: str = None, query_arguments: str = None, refresh_schedule: str = None, sql_query: str = None, incremental: bool = False, incremental_database_connector_config: Union[dict, IncrementalDatabaseConnectorConfig] = None) -> Dataset:
|
|
5399
|
+
def create_dataset_from_database_connector(self, table_name: str, database_connector_id: str, object_name: str = None, columns: str = None, query_arguments: str = None, refresh_schedule: str = None, sql_query: str = None, incremental: bool = False, incremental_database_connector_config: Union[dict, IncrementalDatabaseConnectorConfig] = None, document_processing_config: Union[dict, DatasetDocumentProcessingConfig] = None) -> Dataset:
|
|
5364
5400
|
"""Creates a dataset from a Database Connector.
|
|
5365
5401
|
|
|
5366
5402
|
Args:
|
|
@@ -5373,10 +5409,11 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
5373
5409
|
sql_query (str): The full SQL query to use when fetching data. If present, this parameter will override `object_name`, `columns`, `timestamp_column`, and `query_arguments`.
|
|
5374
5410
|
incremental (bool): Signifies if the dataset is an incremental dataset.
|
|
5375
5411
|
incremental_database_connector_config (IncrementalDatabaseConnectorConfig): The config for incremental datasets. Only valid if incremental is True
|
|
5412
|
+
document_processing_config (DatasetDocumentProcessingConfig): The document processing configuration. Only valid when documents are being imported (e.g. importing KnowledgeArticleDescriptions via Salesforce).
|
|
5376
5413
|
|
|
5377
5414
|
Returns:
|
|
5378
5415
|
Dataset: The created dataset."""
|
|
5379
|
-
return self._call_api('createDatasetFromDatabaseConnector', 'POST', query_params={}, body={'tableName': table_name, 'databaseConnectorId': database_connector_id, 'objectName': object_name, 'columns': columns, 'queryArguments': query_arguments, 'refreshSchedule': refresh_schedule, 'sqlQuery': sql_query, 'incremental': incremental, 'incrementalDatabaseConnectorConfig': incremental_database_connector_config}, parse_type=Dataset)
|
|
5416
|
+
return self._call_api('createDatasetFromDatabaseConnector', 'POST', query_params={}, body={'tableName': table_name, 'databaseConnectorId': database_connector_id, 'objectName': object_name, 'columns': columns, 'queryArguments': query_arguments, 'refreshSchedule': refresh_schedule, 'sqlQuery': sql_query, 'incremental': incremental, 'incrementalDatabaseConnectorConfig': incremental_database_connector_config, 'documentProcessingConfig': document_processing_config}, parse_type=Dataset)
|
|
5380
5417
|
|
|
5381
5418
|
def create_dataset_from_application_connector(self, table_name: str, application_connector_id: str, dataset_config: Union[dict, ApplicationConnectorDatasetConfig] = None, refresh_schedule: str = None) -> Dataset:
|
|
5382
5419
|
"""Creates a dataset from an Application Connector.
|
|
@@ -6198,7 +6235,7 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
6198
6235
|
return self._call_api('createPredictionOperator', 'POST', query_params={}, body={'name': name, 'projectId': project_id, 'sourceCode': source_code, 'predictFunctionName': predict_function_name, 'initializeFunctionName': initialize_function_name, 'featureGroupIds': feature_group_ids, 'cpuSize': cpu_size, 'memory': memory, 'packageRequirements': package_requirements, 'useGpu': use_gpu}, parse_type=PredictionOperator)
|
|
6199
6236
|
|
|
6200
6237
|
def update_prediction_operator(self, prediction_operator_id: str, name: str = None, feature_group_ids: List = None, source_code: str = None, initialize_function_name: str = None, predict_function_name: str = None, cpu_size: str = None, memory: int = None, package_requirements: list = None, use_gpu: bool = None) -> PredictionOperator:
|
|
6201
|
-
"""Update an existing prediction operator.
|
|
6238
|
+
"""Update an existing prediction operator. This does not create a new version.
|
|
6202
6239
|
|
|
6203
6240
|
Args:
|
|
6204
6241
|
prediction_operator_id (str): The unique ID of the prediction operator.
|
|
@@ -8247,6 +8284,14 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
8247
8284
|
Agent: The updated agent."""
|
|
8248
8285
|
return self._call_api('updateAgent', 'POST', query_params={}, body={'modelId': model_id, 'functionSourceCode': function_source_code, 'agentFunctionName': agent_function_name, 'memory': memory, 'packageRequirements': package_requirements, 'description': description, 'enableBinaryInput': enable_binary_input, 'agentInputSchema': agent_input_schema, 'agentOutputSchema': agent_output_schema, 'workflowGraph': workflow_graph, 'agentInterface': agent_interface, 'includedModules': included_modules}, parse_type=Agent)
|
|
8249
8286
|
|
|
8287
|
+
def generate_agent_code(self, project_id: str, prompt: str) -> list:
|
|
8288
|
+
"""Generates the code for defining an AI Agent
|
|
8289
|
+
|
|
8290
|
+
Args:
|
|
8291
|
+
project_id (str): The unique ID associated with the project.
|
|
8292
|
+
prompt (str): A natural language prompt which describes agent specification. Describe what the agent will do, what inputs it will expect, and what outputs it will give out"""
|
|
8293
|
+
return self._call_api('generateAgentCode', 'POST', query_params={}, body={'projectId': project_id, 'prompt': prompt})
|
|
8294
|
+
|
|
8250
8295
|
def evaluate_prompt(self, prompt: str = None, system_message: str = None, llm_name: Union[LLMName, str] = None, max_tokens: int = None, temperature: float = 0.0, messages: list = None, response_type: str = None, json_response_schema: dict = None) -> LlmResponse:
|
|
8251
8296
|
"""Generate response to the prompt using the specified model.
|
|
8252
8297
|
|
|
@@ -8303,7 +8348,7 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
8303
8348
|
|
|
8304
8349
|
Returns:
|
|
8305
8350
|
ExtractedFields: The response from the document query."""
|
|
8306
|
-
return self.
|
|
8351
|
+
return self._proxy_request('ExtractDataUsingLlm', 'POST', query_params={}, body={'fieldDescriptors': field_descriptors, 'documentId': document_id, 'documentText': document_text, 'llmName': llm_name}, parse_type=ExtractedFields)
|
|
8307
8352
|
|
|
8308
8353
|
def search_web_for_llm(self, queries: List, search_providers: List = None, max_results: int = 1, safe: bool = True, fetch_content: bool = False, max_page_tokens: int = 8192, convert_to_markdown: bool = True) -> WebSearchResponse:
|
|
8309
8354
|
"""Access web search providers to fetch content related to the queries for use in large language model inputs.
|
|
@@ -8350,6 +8395,24 @@ Creates a new feature group defined as the union of other feature group versions
|
|
|
8350
8395
|
LlmResponse: The response from the LLM App."""
|
|
8351
8396
|
return self._call_api('getLLMAppResponse', 'POST', query_params={}, body={'llmAppName': llm_app_name, 'prompt': prompt}, parse_type=LlmResponse)
|
|
8352
8397
|
|
|
8398
|
+
def validate_workflow_graph(self, workflow_graph: Union[dict, WorkflowGraph], agent_interface: Union[AgentInterface, str] = AgentInterface.DEFAULT, package_requirements: list = []) -> dict:
|
|
8399
|
+
"""Validates the workflow graph for an AI Agent.
|
|
8400
|
+
|
|
8401
|
+
Args:
|
|
8402
|
+
workflow_graph (WorkflowGraph): The workflow graph to validate.
|
|
8403
|
+
agent_interface (AgentInterface): The interface that the agent will be deployed with.
|
|
8404
|
+
package_requirements (list): A list of package requirement strings. For example: ['numpy==1.2.3', 'pandas>=1.4.0']."""
|
|
8405
|
+
return self._call_api('validateWorkflowGraph', 'POST', query_params={}, body={'workflowGraph': workflow_graph, 'agentInterface': agent_interface, 'packageRequirements': package_requirements})
|
|
8406
|
+
|
|
8407
|
+
def extract_graph_information(self, workflow_graph: Union[dict, WorkflowGraph], agent_interface: Union[AgentInterface, str] = AgentInterface.DEFAULT, package_requirements: list = []) -> dict:
|
|
8408
|
+
"""Extracts information from the workflow.
|
|
8409
|
+
|
|
8410
|
+
Args:
|
|
8411
|
+
workflow_graph (WorkflowGraph): The workflow graph to validate.
|
|
8412
|
+
agent_interface (AgentInterface): The interface that the agent will be deployed with.
|
|
8413
|
+
package_requirements (list): A list of package requirement strings. For example: ['numpy==1.2.3', 'pandas>=1.4.0']."""
|
|
8414
|
+
return self._call_api('extractGraphInformation', 'POST', query_params={}, body={'workflowGraph': workflow_graph, 'agentInterface': agent_interface, 'packageRequirements': package_requirements})
|
|
8415
|
+
|
|
8353
8416
|
def create_document_retriever(self, project_id: str, name: str, feature_group_id: str, document_retriever_config: Union[dict, VectorStoreConfig] = None) -> DocumentRetriever:
|
|
8354
8417
|
"""Returns a document retriever that stores embeddings for document chunks in a feature group.
|
|
8355
8418
|
|
|
@@ -8,15 +8,18 @@ class DataUploadResult(AbstractApiClass):
|
|
|
8
8
|
Args:
|
|
9
9
|
client (ApiClient): An authenticated API Client instance
|
|
10
10
|
docInfos (list[agentdatadocumentinfo]): A list of dict for information on the documents uploaded to agent.
|
|
11
|
+
maxCount (int): The maximum number of documents
|
|
11
12
|
"""
|
|
12
13
|
|
|
13
|
-
def __init__(self, client, docInfos=None):
|
|
14
|
+
def __init__(self, client, docInfos=None, maxCount=None):
|
|
14
15
|
super().__init__(client, None)
|
|
15
16
|
self.doc_infos = docInfos
|
|
17
|
+
self.max_count = maxCount
|
|
16
18
|
self.deprecated_keys = {}
|
|
17
19
|
|
|
18
20
|
def __repr__(self):
|
|
19
|
-
repr_dict = {f'doc_infos': repr(
|
|
21
|
+
repr_dict = {f'doc_infos': repr(
|
|
22
|
+
self.doc_infos), f'max_count': repr(self.max_count)}
|
|
20
23
|
class_name = "DataUploadResult"
|
|
21
24
|
repr_str = ',\n '.join([f'{key}={value}' for key, value in repr_dict.items(
|
|
22
25
|
) if getattr(self, key, None) is not None and key not in self.deprecated_keys])
|
|
@@ -29,5 +32,5 @@ class DataUploadResult(AbstractApiClass):
|
|
|
29
32
|
Returns:
|
|
30
33
|
dict: The dict value representation of the class parameters
|
|
31
34
|
"""
|
|
32
|
-
resp = {'doc_infos': self.doc_infos}
|
|
35
|
+
resp = {'doc_infos': self.doc_infos, 'max_count': self.max_count}
|
|
33
36
|
return {key: value for key, value in resp.items() if value is not None and key not in self.deprecated_keys}
|
|
@@ -21,6 +21,8 @@ class ModelVersion(AbstractApiClass):
|
|
|
21
21
|
trainingStartedAt (str): The start time and date of the training process in ISO-8601 format.
|
|
22
22
|
trainingCompletedAt (str): The end time and date of the training process in ISO-8601 format.
|
|
23
23
|
featureGroupVersions (list): A list of Feature Group version IDs used for model training.
|
|
24
|
+
customAlgorithms (list): List of user-defined algorithms used for model training.
|
|
25
|
+
builtinAlgorithms (list): List of algorithm names builtin algorithms provided by Abacus.AI used for model training.
|
|
24
26
|
error (str): Relevant error if the status is FAILED.
|
|
25
27
|
pendingDeploymentIds (list): List of deployment IDs where deployment is pending.
|
|
26
28
|
failedDeploymentIds (list): List of failed deployment IDs.
|
|
@@ -45,7 +47,7 @@ class ModelVersion(AbstractApiClass):
|
|
|
45
47
|
deployableAlgorithms (DeployableAlgorithm): List of deployable algorithms.
|
|
46
48
|
"""
|
|
47
49
|
|
|
48
|
-
def __init__(self, client, modelVersion=None, modelConfigType=None, status=None, modelId=None, modelPredictionConfig=None, trainingStartedAt=None, trainingCompletedAt=None, featureGroupVersions=None, error=None, pendingDeploymentIds=None, failedDeploymentIds=None, cpuSize=None, memory=None, automlComplete=None, trainingFeatureGroupIds=None, trainingDocumentRetrieverVersions=None, documentRetrieverMappings=None, bestAlgorithm=None, defaultAlgorithm=None, featureAnalysisStatus=None, dataClusterInfo=None, customAlgorithmConfigs=None, trainedModelTypes=None, useGpu=None, partialComplete=None, modelFeatureGroupSchemaMappings=None, trainingConfigUpdated=None, codeSource={}, modelConfig={}, deployableAlgorithms={}):
|
|
50
|
+
def __init__(self, client, modelVersion=None, modelConfigType=None, status=None, modelId=None, modelPredictionConfig=None, trainingStartedAt=None, trainingCompletedAt=None, featureGroupVersions=None, customAlgorithms=None, builtinAlgorithms=None, error=None, pendingDeploymentIds=None, failedDeploymentIds=None, cpuSize=None, memory=None, automlComplete=None, trainingFeatureGroupIds=None, trainingDocumentRetrieverVersions=None, documentRetrieverMappings=None, bestAlgorithm=None, defaultAlgorithm=None, featureAnalysisStatus=None, dataClusterInfo=None, customAlgorithmConfigs=None, trainedModelTypes=None, useGpu=None, partialComplete=None, modelFeatureGroupSchemaMappings=None, trainingConfigUpdated=None, codeSource={}, modelConfig={}, deployableAlgorithms={}):
|
|
49
51
|
super().__init__(client, modelVersion)
|
|
50
52
|
self.model_version = modelVersion
|
|
51
53
|
self.model_config_type = modelConfigType
|
|
@@ -55,6 +57,8 @@ class ModelVersion(AbstractApiClass):
|
|
|
55
57
|
self.training_started_at = trainingStartedAt
|
|
56
58
|
self.training_completed_at = trainingCompletedAt
|
|
57
59
|
self.feature_group_versions = featureGroupVersions
|
|
60
|
+
self.custom_algorithms = customAlgorithms
|
|
61
|
+
self.builtin_algorithms = builtinAlgorithms
|
|
58
62
|
self.error = error
|
|
59
63
|
self.pending_deployment_ids = pendingDeploymentIds
|
|
60
64
|
self.failed_deployment_ids = failedDeploymentIds
|
|
@@ -82,7 +86,7 @@ class ModelVersion(AbstractApiClass):
|
|
|
82
86
|
self.deprecated_keys = {}
|
|
83
87
|
|
|
84
88
|
def __repr__(self):
|
|
85
|
-
repr_dict = {f'model_version': repr(self.model_version), f'model_config_type': repr(self.model_config_type), f'status': repr(self.status), f'model_id': repr(self.model_id), f'model_prediction_config': repr(self.model_prediction_config), f'training_started_at': repr(self.training_started_at), f'training_completed_at': repr(self.training_completed_at), f'feature_group_versions': repr(self.feature_group_versions), f'error': repr(self.error), f'pending_deployment_ids': repr(self.pending_deployment_ids), f'failed_deployment_ids': repr(self.failed_deployment_ids), f'cpu_size': repr(self.cpu_size), f'memory': repr(self.memory), f'automl_complete': repr(self.automl_complete), f'training_feature_group_ids': repr(self.training_feature_group_ids), f'training_document_retriever_versions': repr(
|
|
89
|
+
repr_dict = {f'model_version': repr(self.model_version), f'model_config_type': repr(self.model_config_type), f'status': repr(self.status), f'model_id': repr(self.model_id), f'model_prediction_config': repr(self.model_prediction_config), f'training_started_at': repr(self.training_started_at), f'training_completed_at': repr(self.training_completed_at), f'feature_group_versions': repr(self.feature_group_versions), f'custom_algorithms': repr(self.custom_algorithms), f'builtin_algorithms': repr(self.builtin_algorithms), f'error': repr(self.error), f'pending_deployment_ids': repr(self.pending_deployment_ids), f'failed_deployment_ids': repr(self.failed_deployment_ids), f'cpu_size': repr(self.cpu_size), f'memory': repr(self.memory), f'automl_complete': repr(self.automl_complete), f'training_feature_group_ids': repr(self.training_feature_group_ids), f'training_document_retriever_versions': repr(
|
|
86
90
|
self.training_document_retriever_versions), f'document_retriever_mappings': repr(self.document_retriever_mappings), f'best_algorithm': repr(self.best_algorithm), f'default_algorithm': repr(self.default_algorithm), f'feature_analysis_status': repr(self.feature_analysis_status), f'data_cluster_info': repr(self.data_cluster_info), f'custom_algorithm_configs': repr(self.custom_algorithm_configs), f'trained_model_types': repr(self.trained_model_types), f'use_gpu': repr(self.use_gpu), f'partial_complete': repr(self.partial_complete), f'model_feature_group_schema_mappings': repr(self.model_feature_group_schema_mappings), f'training_config_updated': repr(self.training_config_updated), f'code_source': repr(self.code_source), f'model_config': repr(self.model_config), f'deployable_algorithms': repr(self.deployable_algorithms)}
|
|
87
91
|
class_name = "ModelVersion"
|
|
88
92
|
repr_str = ',\n '.join([f'{key}={value}' for key, value in repr_dict.items(
|
|
@@ -96,8 +100,8 @@ class ModelVersion(AbstractApiClass):
|
|
|
96
100
|
Returns:
|
|
97
101
|
dict: The dict value representation of the class parameters
|
|
98
102
|
"""
|
|
99
|
-
resp = {'model_version': self.model_version, 'model_config_type': self.model_config_type, 'status': self.status, 'model_id': self.model_id, 'model_prediction_config': self.model_prediction_config, 'training_started_at': self.training_started_at, 'training_completed_at': self.training_completed_at, 'feature_group_versions': self.feature_group_versions, 'error': self.error, 'pending_deployment_ids': self.pending_deployment_ids, 'failed_deployment_ids': self.failed_deployment_ids, 'cpu_size': self.cpu_size, 'memory': self.memory, 'automl_complete': self.automl_complete, 'training_feature_group_ids': self.training_feature_group_ids, 'training_document_retriever_versions': self.training_document_retriever_versions,
|
|
100
|
-
self.document_retriever_mappings, 'best_algorithm': self.best_algorithm, 'default_algorithm': self.default_algorithm, 'feature_analysis_status': self.feature_analysis_status, 'data_cluster_info': self.data_cluster_info, 'custom_algorithm_configs': self.custom_algorithm_configs, 'trained_model_types': self.trained_model_types, 'use_gpu': self.use_gpu, 'partial_complete': self.partial_complete, 'model_feature_group_schema_mappings': self.model_feature_group_schema_mappings, 'training_config_updated': self.training_config_updated, 'code_source': self._get_attribute_as_dict(self.code_source), 'model_config': self._get_attribute_as_dict(self.model_config), 'deployable_algorithms': self._get_attribute_as_dict(self.deployable_algorithms)}
|
|
103
|
+
resp = {'model_version': self.model_version, 'model_config_type': self.model_config_type, 'status': self.status, 'model_id': self.model_id, 'model_prediction_config': self.model_prediction_config, 'training_started_at': self.training_started_at, 'training_completed_at': self.training_completed_at, 'feature_group_versions': self.feature_group_versions, 'custom_algorithms': self.custom_algorithms, 'builtin_algorithms': self.builtin_algorithms, 'error': self.error, 'pending_deployment_ids': self.pending_deployment_ids, 'failed_deployment_ids': self.failed_deployment_ids, 'cpu_size': self.cpu_size, 'memory': self.memory, 'automl_complete': self.automl_complete, 'training_feature_group_ids': self.training_feature_group_ids, 'training_document_retriever_versions': self.training_document_retriever_versions,
|
|
104
|
+
'document_retriever_mappings': self.document_retriever_mappings, 'best_algorithm': self.best_algorithm, 'default_algorithm': self.default_algorithm, 'feature_analysis_status': self.feature_analysis_status, 'data_cluster_info': self.data_cluster_info, 'custom_algorithm_configs': self.custom_algorithm_configs, 'trained_model_types': self.trained_model_types, 'use_gpu': self.use_gpu, 'partial_complete': self.partial_complete, 'model_feature_group_schema_mappings': self.model_feature_group_schema_mappings, 'training_config_updated': self.training_config_updated, 'code_source': self._get_attribute_as_dict(self.code_source), 'model_config': self._get_attribute_as_dict(self.model_config), 'deployable_algorithms': self._get_attribute_as_dict(self.deployable_algorithms)}
|
|
101
105
|
return {key: value for key, value in resp.items() if value is not None and key not in self.deprecated_keys}
|
|
102
106
|
|
|
103
107
|
def describe_train_test_data_split_feature_group_version(self):
|
|
@@ -95,7 +95,7 @@ class PredictionOperator(AbstractApiClass):
|
|
|
95
95
|
|
|
96
96
|
def update(self, name: str = None, feature_group_ids: List = None, source_code: str = None, initialize_function_name: str = None, predict_function_name: str = None, cpu_size: str = None, memory: int = None, package_requirements: list = None, use_gpu: bool = None):
|
|
97
97
|
"""
|
|
98
|
-
Update an existing prediction operator.
|
|
98
|
+
Update an existing prediction operator. This does not create a new version.
|
|
99
99
|
|
|
100
100
|
Args:
|
|
101
101
|
name (str): Name of the prediction operator.
|