abacusai 0.79.0__tar.gz → 0.79.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of abacusai might be problematic. Click here for more details.

Files changed (733) hide show
  1. {abacusai-0.79.0/abacusai.egg-info → abacusai-0.79.2}/PKG-INFO +1 -1
  2. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/__init__.py +1 -1
  3. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/__init__.py +1 -0
  4. abacusai-0.79.2/abacusai/api_class/ai_agents.py +22 -0
  5. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/dataset.py +1 -0
  6. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/dataset_application_connector.py +23 -1
  7. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/enums.py +16 -0
  8. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/model.py +5 -4
  9. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_endpoint.py +6 -4
  10. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/chat_session.py +6 -4
  11. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/client.py +76 -31
  12. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_retriever.py +3 -2
  13. abacusai-0.79.2/abacusai/extracted_fields.py +35 -0
  14. abacusai-0.79.2/abacusai/llm_generated_code.py +32 -0
  15. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model.py +1 -1
  16. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_version.py +4 -3
  17. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/project.py +6 -9
  18. abacusai-0.79.2/abacusai/public.pem +5 -0
  19. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/test_point_predictions.py +6 -4
  20. {abacusai-0.79.0 → abacusai-0.79.2/abacusai.egg-info}/PKG-INFO +1 -1
  21. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai.egg-info/SOURCES.txt +3 -0
  22. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/dataset/index.rst.txt +6 -0
  23. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/enums/index.rst.txt +41 -0
  24. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/index.rst.txt +162 -70
  25. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/model/index.rst.txt +56 -70
  26. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/monitor_alert/index.rst.txt +59 -0
  27. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/app_user_group/index.rst.txt +3 -1
  28. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/client/index.rst.txt +41 -8
  29. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_row_process/index.rst.txt +7 -1
  30. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/finetuned_pretrained_model/index.rst.txt +11 -5
  31. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/hosted_model_token/index.rst.txt +3 -1
  32. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/index.rst.txt +206 -79
  33. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_version/index.rst.txt +11 -0
  34. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_client/index.rst.txt +3 -1
  35. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/dataset/index.html +5 -0
  36. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/enums/index.html +41 -0
  37. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/index.html +232 -132
  38. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/model/index.html +59 -70
  39. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/monitor_alert/index.html +66 -1
  40. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/app_user_group/index.html +2 -1
  41. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/client/index.html +49 -12
  42. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_row_process/index.html +4 -1
  43. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/finetuned_pretrained_model/index.html +6 -3
  44. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/hosted_model_token/index.html +2 -1
  45. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/index.html +280 -139
  46. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_version/index.html +17 -0
  47. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_client/index.html +2 -1
  48. {abacusai-0.79.0 → abacusai-0.79.2}/docs/genindex.html +169 -17
  49. abacusai-0.79.2/docs/objects.inv +0 -0
  50. abacusai-0.79.2/docs/searchindex.js +1 -0
  51. {abacusai-0.79.0 → abacusai-0.79.2}/setup.py +1 -1
  52. abacusai-0.79.0/abacusai/public.pem +0 -5
  53. abacusai-0.79.0/docs/objects.inv +0 -0
  54. abacusai-0.79.0/docs/searchindex.js +0 -1
  55. {abacusai-0.79.0 → abacusai-0.79.2}/.gitignore +0 -0
  56. {abacusai-0.79.0 → abacusai-0.79.2}/LICENSE +0 -0
  57. {abacusai-0.79.0 → abacusai-0.79.2}/README.md +0 -0
  58. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/abacus_api.py +0 -0
  59. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/agent.py +0 -0
  60. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/agent_version.py +0 -0
  61. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/ai_building_task.py +0 -0
  62. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/algorithm.py +0 -0
  63. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/annotation.py +0 -0
  64. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/annotation_config.py +0 -0
  65. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/annotation_document.py +0 -0
  66. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/annotation_entry.py +0 -0
  67. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/annotations_status.py +0 -0
  68. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/abstract.py +0 -0
  69. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/batch_prediction.py +0 -0
  70. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/blob_input.py +0 -0
  71. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/document_retriever.py +0 -0
  72. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/feature_group.py +0 -0
  73. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/monitor.py +0 -0
  74. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/monitor_alert.py +0 -0
  75. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/project.py +0 -0
  76. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/python_functions.py +0 -0
  77. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_class/refresh.py +0 -0
  78. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_client_utils.py +0 -0
  79. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/api_key.py +0 -0
  80. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/app_user_group.py +0 -0
  81. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/application_connector.py +0 -0
  82. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/batch_prediction.py +0 -0
  83. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/batch_prediction_version.py +0 -0
  84. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/batch_prediction_version_logs.py +0 -0
  85. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/categorical_range_violation.py +0 -0
  86. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/chat_message.py +0 -0
  87. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/code_source.py +0 -0
  88. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/concatenation_config.py +0 -0
  89. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/cpu_gpu_memory_specs.py +0 -0
  90. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/cryptography.py +0 -0
  91. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/custom_loss_function.py +0 -0
  92. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/custom_metric.py +0 -0
  93. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/custom_metric_version.py +0 -0
  94. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/custom_train_function_info.py +0 -0
  95. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/data_consistency_duplication.py +0 -0
  96. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/data_metrics.py +0 -0
  97. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/data_prep_logs.py +0 -0
  98. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/data_quality_results.py +0 -0
  99. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/database_connector.py +0 -0
  100. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/dataset.py +0 -0
  101. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/dataset_column.py +0 -0
  102. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/dataset_version.py +0 -0
  103. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/dataset_version_logs.py +0 -0
  104. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/deployment.py +0 -0
  105. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/deployment_auth_token.py +0 -0
  106. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/deployment_conversation.py +0 -0
  107. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/deployment_conversation_event.py +0 -0
  108. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/deployment_conversation_export.py +0 -0
  109. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document.py +0 -0
  110. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_annotation.py +0 -0
  111. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_retriever_config.py +0 -0
  112. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_retriever_lookup_result.py +0 -0
  113. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_retriever_version.py +0 -0
  114. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_store.py +0 -0
  115. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/document_store_import.py +0 -0
  116. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/drift_distribution.py +0 -0
  117. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/drift_distributions.py +0 -0
  118. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda.py +0 -0
  119. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_chart_description.py +0 -0
  120. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_collinearity.py +0 -0
  121. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_data_consistency.py +0 -0
  122. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_feature_association.py +0 -0
  123. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_feature_collinearity.py +0 -0
  124. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_forecasting_analysis.py +0 -0
  125. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/eda_version.py +0 -0
  126. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/embedding_feature_drift_distribution.py +0 -0
  127. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/execute_feature_group_operation.py +0 -0
  128. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/external_application.py +0 -0
  129. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature.py +0 -0
  130. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_distribution.py +0 -0
  131. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_drift_record.py +0 -0
  132. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_drift_summary.py +0 -0
  133. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group.py +0 -0
  134. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_document.py +0 -0
  135. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_export.py +0 -0
  136. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_export_config.py +0 -0
  137. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_export_download_url.py +0 -0
  138. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_lineage.py +0 -0
  139. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_refresh_export_config.py +0 -0
  140. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_row.py +0 -0
  141. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_row_process.py +0 -0
  142. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_row_process_logs.py +0 -0
  143. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_row_process_summary.py +0 -0
  144. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_template.py +0 -0
  145. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_template_variable_options.py +0 -0
  146. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_group_version.py +0 -0
  147. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_importance.py +0 -0
  148. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_mapping.py +0 -0
  149. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/feature_record.py +0 -0
  150. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/file_connector.py +0 -0
  151. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/file_connector_instructions.py +0 -0
  152. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/file_connector_verification.py +0 -0
  153. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/finetuned_pretrained_model.py +0 -0
  154. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/forecasting_analysis_graph_data.py +0 -0
  155. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/forecasting_monitor_item_analysis.py +0 -0
  156. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/forecasting_monitor_summary.py +0 -0
  157. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/function_logs.py +0 -0
  158. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/generated_pit_feature_config_option.py +0 -0
  159. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/graph_dashboard.py +0 -0
  160. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/holdout_analysis.py +0 -0
  161. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/holdout_analysis_version.py +0 -0
  162. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/hosted_model_token.py +0 -0
  163. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/indexing_config.py +0 -0
  164. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/inferred_feature_mappings.py +0 -0
  165. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/item_statistics.py +0 -0
  166. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/llm_code_block.py +0 -0
  167. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/llm_execution_preview.py +0 -0
  168. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/llm_execution_result.py +0 -0
  169. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/llm_input.py +0 -0
  170. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/llm_parameters.py +0 -0
  171. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/llm_response.py +0 -0
  172. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/memory_options.py +0 -0
  173. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_artifacts_export.py +0 -0
  174. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_blueprint_export.py +0 -0
  175. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_blueprint_stage.py +0 -0
  176. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_location.py +0 -0
  177. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_metrics.py +0 -0
  178. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_monitor.py +0 -0
  179. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_monitor_org_summary.py +0 -0
  180. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_monitor_summary.py +0 -0
  181. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_monitor_summary_from_org.py +0 -0
  182. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_monitor_version.py +0 -0
  183. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_monitor_version_metric_data.py +0 -0
  184. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_training_type_for_deployment.py +0 -0
  185. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_upload.py +0 -0
  186. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/model_version_feature_group_schema.py +0 -0
  187. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/modification_lock_info.py +0 -0
  188. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/module.py +0 -0
  189. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/monitor_alert.py +0 -0
  190. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/monitor_alert_version.py +0 -0
  191. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/natural_language_explanation.py +0 -0
  192. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/nested_feature.py +0 -0
  193. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/nested_feature_schema.py +0 -0
  194. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/notebook_completion.py +0 -0
  195. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/notebook_template.py +0 -0
  196. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/null_violation.py +0 -0
  197. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/organization_external_application_settings.py +0 -0
  198. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/organization_group.py +0 -0
  199. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/organization_search_result.py +0 -0
  200. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/organization_secret.py +0 -0
  201. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/page_data.py +0 -0
  202. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline.py +0 -0
  203. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_reference.py +0 -0
  204. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_step.py +0 -0
  205. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_step_version.py +0 -0
  206. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_step_version_logs.py +0 -0
  207. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_step_version_reference.py +0 -0
  208. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_version.py +0 -0
  209. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/pipeline_version_logs.py +0 -0
  210. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/point_in_time_feature.py +0 -0
  211. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/point_in_time_feature_info.py +0 -0
  212. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/point_in_time_group.py +0 -0
  213. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/point_in_time_group_feature.py +0 -0
  214. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_client.py +0 -0
  215. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_dataset.py +0 -0
  216. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_feature_group.py +0 -0
  217. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_input.py +0 -0
  218. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_metric.py +0 -0
  219. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_metric_version.py +0 -0
  220. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_operator.py +0 -0
  221. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/prediction_operator_version.py +0 -0
  222. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/problem_type.py +0 -0
  223. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/project_config.py +0 -0
  224. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/project_feature_group.py +0 -0
  225. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/project_feature_group_schema.py +0 -0
  226. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/project_feature_group_schema_version.py +0 -0
  227. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/project_validation.py +0 -0
  228. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/python_function.py +0 -0
  229. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/python_function_validator.py +0 -0
  230. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/python_plot_function.py +0 -0
  231. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/range_violation.py +0 -0
  232. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/refresh_pipeline_run.py +0 -0
  233. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/refresh_policy.py +0 -0
  234. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/refresh_schedule.py +0 -0
  235. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/requirements.txt +0 -0
  236. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/resolved_feature_group_template.py +0 -0
  237. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/return_class.py +0 -0
  238. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/schema.py +0 -0
  239. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/streaming_auth_token.py +0 -0
  240. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/streaming_client.py +0 -0
  241. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/streaming_connector.py +0 -0
  242. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/streaming_row_count.py +0 -0
  243. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/streaming_sample_code.py +0 -0
  244. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/training_config_options.py +0 -0
  245. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/type_violation.py +0 -0
  246. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/upload.py +0 -0
  247. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/upload_part.py +0 -0
  248. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/use_case.py +0 -0
  249. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/use_case_requirements.py +0 -0
  250. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/user.py +0 -0
  251. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/user_exception.py +0 -0
  252. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai/webhook.py +0 -0
  253. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai.egg-info/dependency_links.txt +0 -0
  254. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai.egg-info/requires.txt +0 -0
  255. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai.egg-info/top_level.txt +0 -0
  256. {abacusai-0.79.0 → abacusai-0.79.2}/abacusai.egg-info/zip-safe +0 -0
  257. {abacusai-0.79.0 → abacusai-0.79.2}/docs/.buildinfo +0 -0
  258. {abacusai-0.79.0 → abacusai-0.79.2}/docs/.nojekyll +0 -0
  259. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/abacus_api/index.rst.txt +0 -0
  260. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/agent/index.rst.txt +0 -0
  261. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/agent_version/index.rst.txt +0 -0
  262. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/ai_building_task/index.rst.txt +0 -0
  263. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/algorithm/index.rst.txt +0 -0
  264. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/annotation/index.rst.txt +0 -0
  265. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/annotation_config/index.rst.txt +0 -0
  266. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/annotation_document/index.rst.txt +0 -0
  267. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/annotation_entry/index.rst.txt +0 -0
  268. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/annotations_status/index.rst.txt +0 -0
  269. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/abstract/index.rst.txt +0 -0
  270. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/batch_prediction/index.rst.txt +0 -0
  271. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/blob_input/index.rst.txt +0 -0
  272. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/dataset_application_connector/index.rst.txt +0 -0
  273. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/document_retriever/index.rst.txt +0 -0
  274. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/feature_group/index.rst.txt +0 -0
  275. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/monitor/index.rst.txt +0 -0
  276. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/project/index.rst.txt +0 -0
  277. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/python_function_argument/index.rst.txt +0 -0
  278. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/python_functions/index.rst.txt +0 -0
  279. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/refresh/index.rst.txt +0 -0
  280. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_class/vector_store/index.rst.txt +0 -0
  281. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_client_utils/index.rst.txt +0 -0
  282. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_endpoint/index.rst.txt +0 -0
  283. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/api_key/index.rst.txt +0 -0
  284. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/application_connector/index.rst.txt +0 -0
  285. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/batch_prediction/index.rst.txt +0 -0
  286. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/batch_prediction_version/index.rst.txt +0 -0
  287. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/batch_prediction_version_logs/index.rst.txt +0 -0
  288. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/categorical_range_violation/index.rst.txt +0 -0
  289. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/chat_bot_response/index.rst.txt +0 -0
  290. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/chat_message/index.rst.txt +0 -0
  291. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/chat_session/index.rst.txt +0 -0
  292. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/code_source/index.rst.txt +0 -0
  293. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/concatenation_config/index.rst.txt +0 -0
  294. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/cpu_gpu_memory_specs/index.rst.txt +0 -0
  295. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/cryptography/index.rst.txt +0 -0
  296. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/custom_loss_function/index.rst.txt +0 -0
  297. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/custom_metric/index.rst.txt +0 -0
  298. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/custom_metric_version/index.rst.txt +0 -0
  299. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/custom_train_function_info/index.rst.txt +0 -0
  300. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/data_consistency_duplication/index.rst.txt +0 -0
  301. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/data_filter/index.rst.txt +0 -0
  302. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/data_metrics/index.rst.txt +0 -0
  303. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/data_prep_logs/index.rst.txt +0 -0
  304. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/data_quality_results/index.rst.txt +0 -0
  305. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/database_connector/index.rst.txt +0 -0
  306. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/dataset/index.rst.txt +0 -0
  307. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/dataset_column/index.rst.txt +0 -0
  308. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/dataset_version/index.rst.txt +0 -0
  309. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/dataset_version_logs/index.rst.txt +0 -0
  310. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/deployment/index.rst.txt +0 -0
  311. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/deployment_auth_token/index.rst.txt +0 -0
  312. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/deployment_conversation/index.rst.txt +0 -0
  313. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/deployment_conversation_event/index.rst.txt +0 -0
  314. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/deployment_conversation_export/index.rst.txt +0 -0
  315. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document/index.rst.txt +0 -0
  316. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_annotation/index.rst.txt +0 -0
  317. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_retriever/index.rst.txt +0 -0
  318. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_retriever_config/index.rst.txt +0 -0
  319. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_retriever_lookup_result/index.rst.txt +0 -0
  320. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_retriever_version/index.rst.txt +0 -0
  321. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_store/index.rst.txt +0 -0
  322. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/document_store_import/index.rst.txt +0 -0
  323. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/drift_distribution/index.rst.txt +0 -0
  324. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/drift_distributions/index.rst.txt +0 -0
  325. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda/index.rst.txt +0 -0
  326. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_chart_description/index.rst.txt +0 -0
  327. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_collinearity/index.rst.txt +0 -0
  328. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_data_consistency/index.rst.txt +0 -0
  329. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_feature_association/index.rst.txt +0 -0
  330. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_feature_collinearity/index.rst.txt +0 -0
  331. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_forecasting_analysis/index.rst.txt +0 -0
  332. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_leakage_detection/index.rst.txt +0 -0
  333. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/eda_version/index.rst.txt +0 -0
  334. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/embedding_feature_drift_distribution/index.rst.txt +0 -0
  335. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/execute_feature_group_operation/index.rst.txt +0 -0
  336. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/execute_fg_operation/index.rst.txt +0 -0
  337. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/external_application/index.rst.txt +0 -0
  338. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature/index.rst.txt +0 -0
  339. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_distribution/index.rst.txt +0 -0
  340. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_drift_record/index.rst.txt +0 -0
  341. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_drift_summary/index.rst.txt +0 -0
  342. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group/index.rst.txt +0 -0
  343. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_document/index.rst.txt +0 -0
  344. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_export/index.rst.txt +0 -0
  345. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_export_config/index.rst.txt +0 -0
  346. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_export_download_url/index.rst.txt +0 -0
  347. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_lineage/index.rst.txt +0 -0
  348. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_metrics/index.rst.txt +0 -0
  349. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_refresh_export_config/index.rst.txt +0 -0
  350. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_row/index.rst.txt +0 -0
  351. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_row_process_logs/index.rst.txt +0 -0
  352. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_row_process_summary/index.rst.txt +0 -0
  353. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_template/index.rst.txt +0 -0
  354. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_template_variable_options/index.rst.txt +0 -0
  355. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_group_version/index.rst.txt +0 -0
  356. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_importance/index.rst.txt +0 -0
  357. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_mapping/index.rst.txt +0 -0
  358. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/feature_record/index.rst.txt +0 -0
  359. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/file_connector/index.rst.txt +0 -0
  360. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/file_connector_instructions/index.rst.txt +0 -0
  361. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/file_connector_verification/index.rst.txt +0 -0
  362. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/forecasting_analysis_graph_data/index.rst.txt +0 -0
  363. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/forecasting_monitor_item_analysis/index.rst.txt +0 -0
  364. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/forecasting_monitor_summary/index.rst.txt +0 -0
  365. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/function_logs/index.rst.txt +0 -0
  366. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/generated_pit_feature_config_option/index.rst.txt +0 -0
  367. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/graph_dashboard/index.rst.txt +0 -0
  368. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/holdout_analysis/index.rst.txt +0 -0
  369. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/holdout_analysis_version/index.rst.txt +0 -0
  370. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/indexing_config/index.rst.txt +0 -0
  371. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/inferred_feature_mappings/index.rst.txt +0 -0
  372. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/item_statistics/index.rst.txt +0 -0
  373. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/language_detection_prediction/index.rst.txt +0 -0
  374. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/leakage_duplication/index.rst.txt +0 -0
  375. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_code_block/index.rst.txt +0 -0
  376. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_execution_preview/index.rst.txt +0 -0
  377. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_execution_result/index.rst.txt +0 -0
  378. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_input/index.rst.txt +0 -0
  379. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_parameters/index.rst.txt +0 -0
  380. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_response/index.rst.txt +0 -0
  381. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/llm_search_result/index.rst.txt +0 -0
  382. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/memory_options/index.rst.txt +0 -0
  383. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model/index.rst.txt +0 -0
  384. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_artifacts_export/index.rst.txt +0 -0
  385. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_blueprint_export/index.rst.txt +0 -0
  386. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_blueprint_stage/index.rst.txt +0 -0
  387. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_location/index.rst.txt +0 -0
  388. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_metrics/index.rst.txt +0 -0
  389. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_monitor/index.rst.txt +0 -0
  390. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_monitor_org_summary/index.rst.txt +0 -0
  391. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_monitor_summary/index.rst.txt +0 -0
  392. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_monitor_summary_from_org/index.rst.txt +0 -0
  393. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_monitor_version/index.rst.txt +0 -0
  394. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_monitor_version_metric_data/index.rst.txt +0 -0
  395. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_training_type_for_deployment/index.rst.txt +0 -0
  396. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_upload/index.rst.txt +0 -0
  397. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_version/index.rst.txt +0 -0
  398. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/model_version_feature_group_schema/index.rst.txt +0 -0
  399. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/modification_lock_info/index.rst.txt +0 -0
  400. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/module/index.rst.txt +0 -0
  401. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/monitor_alert/index.rst.txt +0 -0
  402. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/monitor_alert_version/index.rst.txt +0 -0
  403. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/natural_language_explanation/index.rst.txt +0 -0
  404. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/nested_feature/index.rst.txt +0 -0
  405. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/nested_feature_schema/index.rst.txt +0 -0
  406. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/nlp_classification_prediction/index.rst.txt +0 -0
  407. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/nlp_sentiment_prediction/index.rst.txt +0 -0
  408. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/null_violation/index.rst.txt +0 -0
  409. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/organization_external_application_settings/index.rst.txt +0 -0
  410. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/organization_group/index.rst.txt +0 -0
  411. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/organization_search_result/index.rst.txt +0 -0
  412. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/organization_secret/index.rst.txt +0 -0
  413. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/page_data/index.rst.txt +0 -0
  414. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline/index.rst.txt +0 -0
  415. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_reference/index.rst.txt +0 -0
  416. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_step/index.rst.txt +0 -0
  417. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_step_version/index.rst.txt +0 -0
  418. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_step_version_logs/index.rst.txt +0 -0
  419. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_step_version_reference/index.rst.txt +0 -0
  420. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pipeline_version_logs/index.rst.txt +0 -0
  421. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/point_in_time_feature/index.rst.txt +0 -0
  422. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/point_in_time_feature_info/index.rst.txt +0 -0
  423. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/point_in_time_group/index.rst.txt +0 -0
  424. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/point_in_time_group_feature/index.rst.txt +0 -0
  425. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_dataset/index.rst.txt +0 -0
  426. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_feature_group/index.rst.txt +0 -0
  427. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_input/index.rst.txt +0 -0
  428. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_metric/index.rst.txt +0 -0
  429. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_metric_version/index.rst.txt +0 -0
  430. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_operator/index.rst.txt +0 -0
  431. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/prediction_operator_version/index.rst.txt +0 -0
  432. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/pretrained_use_case/index.rst.txt +0 -0
  433. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/problem_type/index.rst.txt +0 -0
  434. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project/index.rst.txt +0 -0
  435. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project_config/index.rst.txt +0 -0
  436. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project_dataset/index.rst.txt +0 -0
  437. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project_feature_group/index.rst.txt +0 -0
  438. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project_feature_group_schema/index.rst.txt +0 -0
  439. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project_feature_group_schema_version/index.rst.txt +0 -0
  440. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/project_validation/index.rst.txt +0 -0
  441. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/python_function/index.rst.txt +0 -0
  442. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/python_function_validator/index.rst.txt +0 -0
  443. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/python_plot_function/index.rst.txt +0 -0
  444. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/range_violation/index.rst.txt +0 -0
  445. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/refresh_pipeline_run/index.rst.txt +0 -0
  446. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/refresh_policy/index.rst.txt +0 -0
  447. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/refresh_schedule/index.rst.txt +0 -0
  448. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/resolved_feature_group_template/index.rst.txt +0 -0
  449. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/return_class/index.rst.txt +0 -0
  450. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/schema/index.rst.txt +0 -0
  451. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/slack_connector_response/index.rst.txt +0 -0
  452. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/streaming_auth_token/index.rst.txt +0 -0
  453. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/streaming_client/index.rst.txt +0 -0
  454. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/streaming_connector/index.rst.txt +0 -0
  455. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/streaming_row_count/index.rst.txt +0 -0
  456. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/streaming_sample_code/index.rst.txt +0 -0
  457. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/test_point_predictions/index.rst.txt +0 -0
  458. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/training_config_options/index.rst.txt +0 -0
  459. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/type_violation/index.rst.txt +0 -0
  460. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/upload/index.rst.txt +0 -0
  461. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/upload_part/index.rst.txt +0 -0
  462. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/use_case/index.rst.txt +0 -0
  463. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/use_case_requirements/index.rst.txt +0 -0
  464. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/user/index.rst.txt +0 -0
  465. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/user_exception/index.rst.txt +0 -0
  466. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/vector_store/index.rst.txt +0 -0
  467. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/vector_store_config/index.rst.txt +0 -0
  468. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/vector_store_lookup_result/index.rst.txt +0 -0
  469. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/vector_store_version/index.rst.txt +0 -0
  470. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/autoapi/abacusai/webhook/index.rst.txt +0 -0
  471. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_sources/index.rst.txt +0 -0
  472. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/_sphinx_javascript_frameworks_compat.js +0 -0
  473. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/basic.css +0 -0
  474. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/badge_only.css +0 -0
  475. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/Roboto-Slab-Bold.woff +0 -0
  476. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
  477. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/Roboto-Slab-Regular.woff +0 -0
  478. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
  479. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/fontawesome-webfont.eot +0 -0
  480. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/fontawesome-webfont.svg +0 -0
  481. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/fontawesome-webfont.ttf +0 -0
  482. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/fontawesome-webfont.woff +0 -0
  483. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/fontawesome-webfont.woff2 +0 -0
  484. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-bold-italic.woff +0 -0
  485. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-bold-italic.woff2 +0 -0
  486. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-bold.woff +0 -0
  487. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-bold.woff2 +0 -0
  488. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-normal-italic.woff +0 -0
  489. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-normal-italic.woff2 +0 -0
  490. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-normal.woff +0 -0
  491. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/fonts/lato-normal.woff2 +0 -0
  492. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/css/theme.css +0 -0
  493. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/doctools.js +0 -0
  494. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/documentation_options.js +0 -0
  495. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/file.png +0 -0
  496. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/graphviz.css +0 -0
  497. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/jquery-3.5.1.js +0 -0
  498. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/jquery-3.6.0.js +0 -0
  499. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/jquery.js +0 -0
  500. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/js/badge_only.js +0 -0
  501. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/js/html5shiv-printshiv.min.js +0 -0
  502. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/js/html5shiv.min.js +0 -0
  503. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/js/theme.js +0 -0
  504. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/language_data.js +0 -0
  505. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/minus.png +0 -0
  506. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/plus.png +0 -0
  507. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/pygments.css +0 -0
  508. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/searchtools.js +0 -0
  509. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/sphinx_highlight.js +0 -0
  510. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/underscore-1.13.1.js +0 -0
  511. {abacusai-0.79.0 → abacusai-0.79.2}/docs/_static/underscore.js +0 -0
  512. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/abacus_api/index.html +0 -0
  513. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/agent/index.html +0 -0
  514. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/agent_version/index.html +0 -0
  515. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/ai_building_task/index.html +0 -0
  516. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/algorithm/index.html +0 -0
  517. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/annotation/index.html +0 -0
  518. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/annotation_config/index.html +0 -0
  519. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/annotation_document/index.html +0 -0
  520. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/annotation_entry/index.html +0 -0
  521. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/annotations_status/index.html +0 -0
  522. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/abstract/index.html +0 -0
  523. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/batch_prediction/index.html +0 -0
  524. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/blob_input/index.html +0 -0
  525. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/dataset_application_connector/index.html +0 -0
  526. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/document_retriever/index.html +0 -0
  527. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/feature_group/index.html +0 -0
  528. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/monitor/index.html +0 -0
  529. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/project/index.html +0 -0
  530. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/python_function_argument/index.html +0 -0
  531. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/python_functions/index.html +0 -0
  532. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/refresh/index.html +0 -0
  533. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_class/vector_store/index.html +0 -0
  534. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_client_utils/index.html +0 -0
  535. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_endpoint/index.html +0 -0
  536. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/api_key/index.html +0 -0
  537. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/application_connector/index.html +0 -0
  538. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/batch_prediction/index.html +0 -0
  539. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/batch_prediction_version/index.html +0 -0
  540. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/batch_prediction_version_logs/index.html +0 -0
  541. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/categorical_range_violation/index.html +0 -0
  542. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/chat_bot_response/index.html +0 -0
  543. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/chat_message/index.html +0 -0
  544. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/chat_session/index.html +0 -0
  545. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/code_source/index.html +0 -0
  546. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/concatenation_config/index.html +0 -0
  547. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/cpu_gpu_memory_specs/index.html +0 -0
  548. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/cryptography/index.html +0 -0
  549. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/custom_loss_function/index.html +0 -0
  550. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/custom_metric/index.html +0 -0
  551. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/custom_metric_version/index.html +0 -0
  552. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/custom_train_function_info/index.html +0 -0
  553. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/data_consistency_duplication/index.html +0 -0
  554. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/data_filter/index.html +0 -0
  555. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/data_metrics/index.html +0 -0
  556. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/data_prep_logs/index.html +0 -0
  557. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/data_quality_results/index.html +0 -0
  558. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/database_connector/index.html +0 -0
  559. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/dataset/index.html +0 -0
  560. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/dataset_column/index.html +0 -0
  561. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/dataset_version/index.html +0 -0
  562. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/dataset_version_logs/index.html +0 -0
  563. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/deployment/index.html +0 -0
  564. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/deployment_auth_token/index.html +0 -0
  565. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/deployment_conversation/index.html +0 -0
  566. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/deployment_conversation_event/index.html +0 -0
  567. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/deployment_conversation_export/index.html +0 -0
  568. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document/index.html +0 -0
  569. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_annotation/index.html +0 -0
  570. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_retriever/index.html +0 -0
  571. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_retriever_config/index.html +0 -0
  572. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_retriever_lookup_result/index.html +0 -0
  573. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_retriever_version/index.html +0 -0
  574. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_store/index.html +0 -0
  575. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/document_store_import/index.html +0 -0
  576. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/drift_distribution/index.html +0 -0
  577. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/drift_distributions/index.html +0 -0
  578. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda/index.html +0 -0
  579. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_chart_description/index.html +0 -0
  580. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_collinearity/index.html +0 -0
  581. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_data_consistency/index.html +0 -0
  582. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_feature_association/index.html +0 -0
  583. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_feature_collinearity/index.html +0 -0
  584. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_forecasting_analysis/index.html +0 -0
  585. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_leakage_detection/index.html +0 -0
  586. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/eda_version/index.html +0 -0
  587. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/embedding_feature_drift_distribution/index.html +0 -0
  588. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/execute_feature_group_operation/index.html +0 -0
  589. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/execute_fg_operation/index.html +0 -0
  590. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/external_application/index.html +0 -0
  591. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature/index.html +0 -0
  592. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_distribution/index.html +0 -0
  593. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_drift_record/index.html +0 -0
  594. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_drift_summary/index.html +0 -0
  595. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group/index.html +0 -0
  596. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_document/index.html +0 -0
  597. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_export/index.html +0 -0
  598. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_export_config/index.html +0 -0
  599. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_export_download_url/index.html +0 -0
  600. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_lineage/index.html +0 -0
  601. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_metrics/index.html +0 -0
  602. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_refresh_export_config/index.html +0 -0
  603. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_row/index.html +0 -0
  604. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_row_process_logs/index.html +0 -0
  605. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_row_process_summary/index.html +0 -0
  606. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_template/index.html +0 -0
  607. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_template_variable_options/index.html +0 -0
  608. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_group_version/index.html +0 -0
  609. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_importance/index.html +0 -0
  610. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_mapping/index.html +0 -0
  611. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/feature_record/index.html +0 -0
  612. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/file_connector/index.html +0 -0
  613. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/file_connector_instructions/index.html +0 -0
  614. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/file_connector_verification/index.html +0 -0
  615. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/forecasting_analysis_graph_data/index.html +0 -0
  616. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/forecasting_monitor_item_analysis/index.html +0 -0
  617. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/forecasting_monitor_summary/index.html +0 -0
  618. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/function_logs/index.html +0 -0
  619. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/generated_pit_feature_config_option/index.html +0 -0
  620. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/graph_dashboard/index.html +0 -0
  621. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/holdout_analysis/index.html +0 -0
  622. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/holdout_analysis_version/index.html +0 -0
  623. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/indexing_config/index.html +0 -0
  624. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/inferred_feature_mappings/index.html +0 -0
  625. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/item_statistics/index.html +0 -0
  626. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/language_detection_prediction/index.html +0 -0
  627. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/leakage_duplication/index.html +0 -0
  628. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_code_block/index.html +0 -0
  629. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_execution_preview/index.html +0 -0
  630. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_execution_result/index.html +0 -0
  631. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_input/index.html +0 -0
  632. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_parameters/index.html +0 -0
  633. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_response/index.html +0 -0
  634. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/llm_search_result/index.html +0 -0
  635. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/memory_options/index.html +0 -0
  636. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model/index.html +0 -0
  637. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_artifacts_export/index.html +0 -0
  638. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_blueprint_export/index.html +0 -0
  639. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_blueprint_stage/index.html +0 -0
  640. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_location/index.html +0 -0
  641. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_metrics/index.html +0 -0
  642. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_monitor/index.html +0 -0
  643. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_monitor_org_summary/index.html +0 -0
  644. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_monitor_summary/index.html +0 -0
  645. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_monitor_summary_from_org/index.html +0 -0
  646. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_monitor_version/index.html +0 -0
  647. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_monitor_version_metric_data/index.html +0 -0
  648. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_training_type_for_deployment/index.html +0 -0
  649. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_upload/index.html +0 -0
  650. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_version/index.html +0 -0
  651. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/model_version_feature_group_schema/index.html +0 -0
  652. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/modification_lock_info/index.html +0 -0
  653. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/module/index.html +0 -0
  654. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/monitor_alert/index.html +0 -0
  655. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/monitor_alert_version/index.html +0 -0
  656. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/natural_language_explanation/index.html +0 -0
  657. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/nested_feature/index.html +0 -0
  658. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/nested_feature_schema/index.html +0 -0
  659. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/nlp_classification_prediction/index.html +0 -0
  660. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/nlp_sentiment_prediction/index.html +0 -0
  661. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/null_violation/index.html +0 -0
  662. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/organization_external_application_settings/index.html +0 -0
  663. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/organization_group/index.html +0 -0
  664. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/organization_search_result/index.html +0 -0
  665. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/organization_secret/index.html +0 -0
  666. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/page_data/index.html +0 -0
  667. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline/index.html +0 -0
  668. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_reference/index.html +0 -0
  669. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_step/index.html +0 -0
  670. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_step_version/index.html +0 -0
  671. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_step_version_logs/index.html +0 -0
  672. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_step_version_reference/index.html +0 -0
  673. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pipeline_version_logs/index.html +0 -0
  674. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/point_in_time_feature/index.html +0 -0
  675. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/point_in_time_feature_info/index.html +0 -0
  676. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/point_in_time_group/index.html +0 -0
  677. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/point_in_time_group_feature/index.html +0 -0
  678. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_dataset/index.html +0 -0
  679. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_feature_group/index.html +0 -0
  680. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_input/index.html +0 -0
  681. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_metric/index.html +0 -0
  682. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_metric_version/index.html +0 -0
  683. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_operator/index.html +0 -0
  684. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/prediction_operator_version/index.html +0 -0
  685. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/pretrained_use_case/index.html +0 -0
  686. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/problem_type/index.html +0 -0
  687. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project/index.html +0 -0
  688. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project_config/index.html +0 -0
  689. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project_dataset/index.html +0 -0
  690. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project_feature_group/index.html +0 -0
  691. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project_feature_group_schema/index.html +0 -0
  692. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project_feature_group_schema_version/index.html +0 -0
  693. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/project_validation/index.html +0 -0
  694. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/python_function/index.html +0 -0
  695. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/python_function_validator/index.html +0 -0
  696. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/python_plot_function/index.html +0 -0
  697. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/range_violation/index.html +0 -0
  698. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/refresh_pipeline_run/index.html +0 -0
  699. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/refresh_policy/index.html +0 -0
  700. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/refresh_schedule/index.html +0 -0
  701. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/resolved_feature_group_template/index.html +0 -0
  702. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/return_class/index.html +0 -0
  703. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/schema/index.html +0 -0
  704. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/slack_connector_response/index.html +0 -0
  705. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/streaming_auth_token/index.html +0 -0
  706. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/streaming_client/index.html +0 -0
  707. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/streaming_connector/index.html +0 -0
  708. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/streaming_row_count/index.html +0 -0
  709. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/streaming_sample_code/index.html +0 -0
  710. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/test_point_predictions/index.html +0 -0
  711. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/training_config_options/index.html +0 -0
  712. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/type_violation/index.html +0 -0
  713. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/upload/index.html +0 -0
  714. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/upload_part/index.html +0 -0
  715. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/use_case/index.html +0 -0
  716. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/use_case_requirements/index.html +0 -0
  717. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/user/index.html +0 -0
  718. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/user_exception/index.html +0 -0
  719. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/vector_store/index.html +0 -0
  720. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/vector_store_config/index.html +0 -0
  721. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/vector_store_lookup_result/index.html +0 -0
  722. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/vector_store_version/index.html +0 -0
  723. {abacusai-0.79.0 → abacusai-0.79.2}/docs/autoapi/abacusai/webhook/index.html +0 -0
  724. {abacusai-0.79.0 → abacusai-0.79.2}/docs/index.html +0 -0
  725. {abacusai-0.79.0 → abacusai-0.79.2}/docs/py-modindex.html +0 -0
  726. {abacusai-0.79.0 → abacusai-0.79.2}/docs/search.html +0 -0
  727. {abacusai-0.79.0 → abacusai-0.79.2}/examples/fullscript.py +0 -0
  728. {abacusai-0.79.0 → abacusai-0.79.2}/featurestore.md +0 -0
  729. {abacusai-0.79.0 → abacusai-0.79.2}/requirements.txt +0 -0
  730. {abacusai-0.79.0 → abacusai-0.79.2}/setup.cfg +0 -0
  731. {abacusai-0.79.0 → abacusai-0.79.2}/sphinx/build_docs +0 -0
  732. {abacusai-0.79.0 → abacusai-0.79.2}/sphinx/conf.py +0 -0
  733. {abacusai-0.79.0 → abacusai-0.79.2}/sphinx/index.rst +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: abacusai
3
- Version: 0.79.0
3
+ Version: 0.79.2
4
4
  Summary: Abacus.AI Python Client Library
5
5
  Home-page: https://github.com/abacusai/api-python
6
6
  Author: Abacus.AI
@@ -4,4 +4,4 @@ from .prediction_client import PredictionClient
4
4
  from .streaming_client import StreamingClient
5
5
 
6
6
 
7
- __version__ = "0.79.0"
7
+ __version__ = "0.79.2"
@@ -1,3 +1,4 @@
1
+ from .ai_agents import *
1
2
  from .batch_prediction import *
2
3
  from .blob_input import *
3
4
  from .dataset import *
@@ -0,0 +1,22 @@
1
+ import dataclasses
2
+ from typing import Union
3
+
4
+ from . import enums
5
+ from .abstract import ApiClass
6
+
7
+
8
+ @dataclasses.dataclass
9
+ class FieldDescriptor(ApiClass):
10
+ """
11
+ Configs for vector store indexing.
12
+
13
+ Args:
14
+ field (str): The field to be extracted. This will be used as the key in the response.
15
+ description (str): The description of this field. If not included, the response_field will be used.
16
+ example_extraction (Union[str, int, bool, float]): An example of this extracted field.
17
+ type (enums.FieldDescriptorType): The type of this field. If not provided, the default type is STRING.
18
+ """
19
+ field: str = dataclasses.field()
20
+ description: str = dataclasses.field(default=None)
21
+ example_extraction: Union[str, int, bool, float, list, dict] = dataclasses.field(default=None)
22
+ type: enums.FieldDescriptorType = dataclasses.field(default=enums.FieldDescriptorType.STRING)
@@ -19,3 +19,4 @@ class DocumentProcessingConfig(ApiClass):
19
19
  remove_watermarks: bool = None
20
20
  use_full_ocr: bool = None
21
21
  layout_analysis: bool = False
22
+ enhanced_layout_detection: bool = False
@@ -39,6 +39,27 @@ class GoogleAnalyticsDatasetConfig(DatasetConfig):
39
39
  self.application_connector_type = enums.ApplicationConnectorType.GOOGLEANALYTICS
40
40
 
41
41
 
42
+ @dataclasses.dataclass
43
+ class GoogleDriveDatasetConfig(DatasetConfig):
44
+ """
45
+ Dataset config for Google Drive Application Connector
46
+ Args:
47
+ location (str): The regex location of the files to fetch
48
+ is_documentset (bool): Whether the dataset is a document set
49
+ csv_delimiter (str, optional): If the file format is CSV, use a specific csv delimiter
50
+ extract_bounding_boxes (bool, optional): Signifies whether to extract bounding boxes out of the documents. Only valid if is_documentset if True
51
+ merge_file_schemas (bool, optional): Signifies if the merge file schema policy is enabled. Not applicable if is_documentset is True
52
+ """
53
+ location: str = dataclasses.field(default=None)
54
+ is_documentset: bool = dataclasses.field(default=None)
55
+ csv_delimiter: str = dataclasses.field(default=None)
56
+ extract_bounding_boxes: bool = dataclasses.field(default=False)
57
+ merge_file_schemas: bool = dataclasses.field(default=False)
58
+
59
+ def __post_init__(self):
60
+ self.application_connector_type = enums.ApplicationConnectorType.GOOGLEDRIVE
61
+
62
+
42
63
  @dataclasses.dataclass
43
64
  class SharepointDatasetConfig(DatasetConfig):
44
65
  """
@@ -48,7 +69,7 @@ class SharepointDatasetConfig(DatasetConfig):
48
69
  is_documentset (bool): Whether the dataset is a document set
49
70
  csv_delimiter (str, optional): If the file format is CSV, use a specific csv delimiter
50
71
  extract_bounding_boxes (bool, optional): Signifies whether to extract bounding boxes out of the documents. Only valid if is_documentset if True
51
- merge_file_schemas (bool, optional): Signifies if the merge file schema policy is enabled. If is_documentset is True, this is also set to True by default
72
+ merge_file_schemas (bool, optional): Signifies if the merge file schema policy is enabled. Not applicable if is_documentset is True
52
73
  """
53
74
  location: str = dataclasses.field(default=None)
54
75
  is_documentset: bool = dataclasses.field(default=None)
@@ -76,6 +97,7 @@ class _DatasetConfigFactory(_ApiClassFactory):
76
97
  config_class_map = {
77
98
  enums.ApplicationConnectorType.CONFLUENCE: ConfluenceDatasetConfig,
78
99
  enums.ApplicationConnectorType.GOOGLEANALYTICS: GoogleAnalyticsDatasetConfig,
100
+ enums.ApplicationConnectorType.GOOGLEDRIVE: GoogleDriveDatasetConfig,
79
101
  enums.ApplicationConnectorType.SHAREPOINT: SharepointDatasetConfig,
80
102
  enums.ApplicationConnectorType.ZENDESK: ZendeskDatasetConfig,
81
103
  }
@@ -323,6 +323,7 @@ class ConnectorType(ApiEnum):
323
323
 
324
324
  class ApplicationConnectorType(ApiEnum):
325
325
  GOOGLEANALYTICS = 'GOOGLEANALYTICS'
326
+ GOOGLEDRIVE = 'GOOGLEDRIVE'
326
327
  GIT = 'GIT'
327
328
  CONFLUENCE = 'CONFLUENCE'
328
329
  ZENDESK = 'ZENDESK'
@@ -422,3 +423,18 @@ class PythonFunctionType(ApiEnum):
422
423
  FEATURE_GROUP = 'FEATURE_GROUP'
423
424
  PLOTLY_FIG = 'PLOTLY_FIG'
424
425
  STEP_FUNCTION = 'STEP_FUNCTION'
426
+
427
+
428
+ class EvalArtifactType(ApiEnum):
429
+ FORECASTING_ACCURACY = 'bar_chart'
430
+ FORECASTING_VOLUME = 'bar_chart_volume'
431
+ FORECASTING_HISTORY_LENGTH_ACCURACY = 'bar_chart_accuracy_by_history'
432
+
433
+
434
+ class FieldDescriptorType(ApiEnum):
435
+ STRING = 'STRING'
436
+ INTEGER = 'INTEGER'
437
+ FLOAT = 'FLOAT'
438
+ BOOLEAN = 'BOOLEAN'
439
+ DATETIME = 'DATETIME'
440
+ DATE = 'DATE'
@@ -57,11 +57,7 @@ class PersonalizationTrainingConfig(TrainingConfig):
57
57
  compute_session_metrics (bool): Evaluate models based on how well they are able to predict the next session of interactions.
58
58
  max_user_history_len_percentile (int): Filter out users with history length above this percentile.
59
59
  downsample_item_popularity_percentile (float): Downsample items more popular than this percentile.
60
- <<<<<<< HEAD
61
- allow_duplicate_action_types (List[str]): event types which will not be deduplicated.
62
60
  use_user_id_feature (bool): Use user id as a feature in CTR models.
63
- =======
64
- >>>>>>> e5f12c159c (add config options for session dedupe and recommendation exclusion)
65
61
  """
66
62
  # top-level params
67
63
  objective: enums.PersonalizationObjective = dataclasses.field(default=None)
@@ -382,6 +378,8 @@ class NamedEntityExtractionTrainingConfig(TrainingConfig):
382
378
  active_labels_column (str): Entities that have been marked in a particular text
383
379
  document_format (NLPDocumentFormat): Format of the input documents.
384
380
  include_longformer (bool): Whether to include the longformer model.
381
+ save_predicted_pdf (bool): Whether to save predicted PDF documents
382
+ enhanced_ocr (bool): Enhanced text extraction from predicted digital documents
385
383
  """
386
384
  objective: enums.NERObjective = dataclasses.field(default=None)
387
385
  sort_objective: enums.NERObjective = dataclasses.field(default=None)
@@ -396,6 +394,9 @@ class NamedEntityExtractionTrainingConfig(TrainingConfig):
396
394
  active_labels_column: str = dataclasses.field(default=None)
397
395
  document_format: enums.NLPDocumentFormat = dataclasses.field(default=None)
398
396
  include_longformer: bool = dataclasses.field(default=None)
397
+ # OCR
398
+ save_predicted_pdf: bool = True
399
+ enhanced_ocr: bool = False
399
400
 
400
401
  def __post_init__(self):
401
402
  self.problem_type = enums.ProblemType.NAMED_ENTITY_EXTRACTION
@@ -10,17 +10,19 @@ class ApiEndpoint(AbstractApiClass):
10
10
  apiEndpoint (str): The URI that can be used to make API calls
11
11
  predictEndpoint (str): The URI that can be used to make predict calls against Deployments
12
12
  proxyEndpoint (str): The URI that can be used to make proxy server calls
13
+ llmEndpoint (str): The URI that can be used to make llm api calls
13
14
  """
14
15
 
15
- def __init__(self, client, apiEndpoint=None, predictEndpoint=None, proxyEndpoint=None):
16
+ def __init__(self, client, apiEndpoint=None, predictEndpoint=None, proxyEndpoint=None, llmEndpoint=None):
16
17
  super().__init__(client, None)
17
18
  self.api_endpoint = apiEndpoint
18
19
  self.predict_endpoint = predictEndpoint
19
20
  self.proxy_endpoint = proxyEndpoint
21
+ self.llm_endpoint = llmEndpoint
20
22
 
21
23
  def __repr__(self):
22
24
  repr_dict = {f'api_endpoint': repr(self.api_endpoint), f'predict_endpoint': repr(
23
- self.predict_endpoint), f'proxy_endpoint': repr(self.proxy_endpoint)}
25
+ self.predict_endpoint), f'proxy_endpoint': repr(self.proxy_endpoint), f'llm_endpoint': repr(self.llm_endpoint)}
24
26
  class_name = "ApiEndpoint"
25
27
  repr_str = ',\n '.join([f'{key}={value}' for key, value in repr_dict.items(
26
28
  ) if getattr(self, key, None) is not None])
@@ -33,6 +35,6 @@ class ApiEndpoint(AbstractApiClass):
33
35
  Returns:
34
36
  dict: The dict value representation of the class parameters
35
37
  """
36
- resp = {'api_endpoint': self.api_endpoint, 'predict_endpoint':
37
- self.predict_endpoint, 'proxy_endpoint': self.proxy_endpoint}
38
+ resp = {'api_endpoint': self.api_endpoint, 'predict_endpoint': self.predict_endpoint,
39
+ 'proxy_endpoint': self.proxy_endpoint, 'llm_endpoint': self.llm_endpoint}
38
40
  return {key: value for key, value in resp.items() if value is not None}
@@ -16,11 +16,12 @@ class ChatSession(AbstractApiClass):
16
16
  createdAt (str): The timestamp at which the chat session was created
17
17
  status (str): The status of the chat sessions
18
18
  aiBuildingInProgress (bool): Whether the AI building is in progress or not
19
+ notification (str): A warn/info message about the chat session. For example, a suggestion to create a new session if the current one is too old
19
20
  chatHistory (ChatMessage): The chat history for the conversation
20
21
  nextAiBuildingTask (AiBuildingTask): The next AI building task for the chat session
21
22
  """
22
23
 
23
- def __init__(self, client, answer=None, chatSessionId=None, projectId=None, name=None, createdAt=None, status=None, aiBuildingInProgress=None, chatHistory={}, nextAiBuildingTask={}):
24
+ def __init__(self, client, answer=None, chatSessionId=None, projectId=None, name=None, createdAt=None, status=None, aiBuildingInProgress=None, notification=None, chatHistory={}, nextAiBuildingTask={}):
24
25
  super().__init__(client, chatSessionId)
25
26
  self.answer = answer
26
27
  self.chat_session_id = chatSessionId
@@ -29,13 +30,14 @@ class ChatSession(AbstractApiClass):
29
30
  self.created_at = createdAt
30
31
  self.status = status
31
32
  self.ai_building_in_progress = aiBuildingInProgress
33
+ self.notification = notification
32
34
  self.chat_history = client._build_class(ChatMessage, chatHistory)
33
35
  self.next_ai_building_task = client._build_class(
34
36
  AiBuildingTask, nextAiBuildingTask)
35
37
 
36
38
  def __repr__(self):
37
39
  repr_dict = {f'answer': repr(self.answer), f'chat_session_id': repr(self.chat_session_id), f'project_id': repr(self.project_id), f'name': repr(self.name), f'created_at': repr(self.created_at), f'status': repr(
38
- self.status), f'ai_building_in_progress': repr(self.ai_building_in_progress), f'chat_history': repr(self.chat_history), f'next_ai_building_task': repr(self.next_ai_building_task)}
40
+ self.status), f'ai_building_in_progress': repr(self.ai_building_in_progress), f'notification': repr(self.notification), f'chat_history': repr(self.chat_history), f'next_ai_building_task': repr(self.next_ai_building_task)}
39
41
  class_name = "ChatSession"
40
42
  repr_str = ',\n '.join([f'{key}={value}' for key, value in repr_dict.items(
41
43
  ) if getattr(self, key, None) is not None])
@@ -48,8 +50,8 @@ class ChatSession(AbstractApiClass):
48
50
  Returns:
49
51
  dict: The dict value representation of the class parameters
50
52
  """
51
- resp = {'answer': self.answer, 'chat_session_id': self.chat_session_id, 'project_id': self.project_id, 'name': self.name, 'created_at': self.created_at, 'status': self.status,
52
- 'ai_building_in_progress': self.ai_building_in_progress, 'chat_history': self._get_attribute_as_dict(self.chat_history), 'next_ai_building_task': self._get_attribute_as_dict(self.next_ai_building_task)}
53
+ resp = {'answer': self.answer, 'chat_session_id': self.chat_session_id, 'project_id': self.project_id, 'name': self.name, 'created_at': self.created_at, 'status': self.status, 'ai_building_in_progress':
54
+ self.ai_building_in_progress, 'notification': self.notification, 'chat_history': self._get_attribute_as_dict(self.chat_history), 'next_ai_building_task': self._get_attribute_as_dict(self.next_ai_building_task)}
53
55
  return {key: value for key, value in resp.items() if value is not None}
54
56
 
55
57
  def get(self):
@@ -31,9 +31,9 @@ from .annotations_status import AnnotationsStatus
31
31
  from .api_class import (
32
32
  AlertActionConfig, AlertConditionConfig, ApiClass, ApiEnum,
33
33
  BatchPredictionArgs, DatasetConfig, DocumentRetrieverConfig,
34
- FeatureGroupExportConfig, ForecastingMonitorConfig, MergeConfig,
35
- ParsingConfig, ProblemType, PythonFunctionType, SamplingConfig,
36
- TrainingConfig
34
+ EvalArtifactType, FeatureGroupExportConfig, ForecastingMonitorConfig,
35
+ MergeConfig, ParsingConfig, ProblemType, PythonFunctionType,
36
+ SamplingConfig, TrainingConfig
37
37
  )
38
38
  from .api_client_utils import (
39
39
  INVALID_PANDAS_COLUMN_NAME_CHARACTERS, clean_column_name,
@@ -76,6 +76,7 @@ from .eda_forecasting_analysis import EdaForecastingAnalysis
76
76
  from .eda_version import EdaVersion
77
77
  from .execute_feature_group_operation import ExecuteFeatureGroupOperation
78
78
  from .external_application import ExternalApplication
79
+ from .extracted_fields import ExtractedFields
79
80
  from .feature import Feature
80
81
  from .feature_distribution import FeatureDistribution
81
82
  from .feature_group import FeatureGroup
@@ -100,6 +101,7 @@ from .holdout_analysis import HoldoutAnalysis
100
101
  from .holdout_analysis_version import HoldoutAnalysisVersion
101
102
  from .inferred_feature_mappings import InferredFeatureMappings
102
103
  from .llm_execution_result import LlmExecutionResult
104
+ from .llm_generated_code import LlmGeneratedCode
103
105
  from .llm_input import LlmInput
104
106
  from .llm_parameters import LlmParameters
105
107
  from .llm_response import LlmResponse
@@ -515,7 +517,7 @@ class BaseApiClient:
515
517
  client_options (ClientOptions): Optional API client configurations
516
518
  skip_version_check (bool): If true, will skip checking the server's current API version on initializing the client
517
519
  """
518
- client_version = '0.79.0'
520
+ client_version = '0.79.2'
519
521
 
520
522
  def __init__(self, api_key: str = None, server: str = None, client_options: ClientOptions = None, skip_version_check: bool = False):
521
523
  self.api_key = api_key
@@ -2054,7 +2056,7 @@ class ReadOnlyClient(BaseApiClient):
2054
2056
 
2055
2057
  Returns:
2056
2058
  list[FeatureGroupRow]: A list of feature group rows."""
2057
- return self._call_api('getData', 'GET', query_params={'featureGroupId': feature_group_id, 'primaryKey': primary_key, 'numRows': num_rows}, parse_type=FeatureGroupRow)
2059
+ return self._proxy_request('getData', 'GET', query_params={'featureGroupId': feature_group_id, 'primaryKey': primary_key, 'numRows': num_rows}, parse_type=FeatureGroupRow, is_sync=True)
2058
2060
 
2059
2061
  def list_pending_feature_group_documents(self, feature_group_id: str) -> List[FeatureGroupDocument]:
2060
2062
  """Lists all pending documents added to feature group.
@@ -2411,6 +2413,13 @@ class ReadOnlyClient(BaseApiClient):
2411
2413
  ExternalApplication: The External Application."""
2412
2414
  return self._call_api('describeExternalApplication', 'GET', query_params={'externalApplicationId': external_application_id}, parse_type=ExternalApplication)
2413
2415
 
2416
+ def list_external_applications(self) -> List[ExternalApplication]:
2417
+ """Lists External Applications in an organization.
2418
+
2419
+ Returns:
2420
+ list[ExternalApplication]: List of External Applications."""
2421
+ return self._call_api('listExternalApplications', 'GET', query_params={}, parse_type=ExternalApplication)
2422
+
2414
2423
  def describe_agent(self, agent_id: str) -> Agent:
2415
2424
  """Retrieves a full description of the specified model.
2416
2425
 
@@ -3330,6 +3339,36 @@ class ApiClient(ReadOnlyClient):
3330
3339
  """
3331
3340
  _request_context.chat_history = chat_history
3332
3341
 
3342
+ def get_agent_context_conversation_id(self):
3343
+ """
3344
+ Gets the deployment conversation ID from the current request context. Applicable within a AIAgent
3345
+ execute function.
3346
+
3347
+ Returns:
3348
+ str: The deployment conversation ID for the current request being processed by the Agent.
3349
+ """
3350
+ return get_object_from_context(self, _request_context, 'deployment_conversation_id', str)
3351
+
3352
+ def get_agent_context_external_session_id(self):
3353
+ """
3354
+ Gets the external session ID from the current request context if it has been set with the request.
3355
+ Applicable within a AIAgent execute function.
3356
+
3357
+ Returns:
3358
+ str: The external session ID for the current request being processed by the Agent.
3359
+ """
3360
+ return get_object_from_context(self, _request_context, 'external_session_id', str)
3361
+
3362
+ def get_agent_context_doc_ids(self):
3363
+ """
3364
+ Gets the document ID from the current request context if a document has been uploaded with the request.
3365
+ Applicable within a AIAgent execute function.
3366
+
3367
+ Returns:
3368
+ List[str]: The document IDs the current request being processed by the Agent.
3369
+ """
3370
+ return get_object_from_context(self, _request_context, 'doc_ids', List[str])
3371
+
3333
3372
  def clear_agent_context(self):
3334
3373
  """
3335
3374
  Clears the current request context.
@@ -3512,11 +3551,11 @@ class ApiClient(ReadOnlyClient):
3512
3551
  Returns:
3513
3552
  pandas.DataFrame: The result of the query.
3514
3553
  """
3515
- sql = self.generate_code_for_data_query_using_llm(
3554
+ code = self.generate_code_for_data_query_using_llm(
3516
3555
  query=query, feature_group_ids=feature_group_ids, prompt_context=prompt_context, llm_name=llm_name, temperature=temperature)
3517
3556
  if preview:
3518
- return self._build_class(LlmExecutionResult, {'preview': {'sql': sql}})
3519
- execute_query = self.execute_async_feature_group_operation(sql)
3557
+ return self._build_class(LlmExecutionResult, {'preview': {'sql': code.sql}})
3558
+ execute_query = self.execute_async_feature_group_operation(code.sql)
3520
3559
  execute_query.wait_for_execution(timeout=timeout, delay=delay)
3521
3560
  return self._build_class(LlmExecutionResult, {'error': execute_query.error}) if execute_query.error else execute_query.load_as_pandas()
3522
3561
 
@@ -4970,10 +5009,7 @@ Creates a new feature group defined as the union of other feature group versions
4970
5009
  return self._call_api('createTrainTestDataSplitFeatureGroup', 'POST', query_params={}, body={'projectId': project_id, 'trainingConfig': training_config, 'featureGroupIds': feature_group_ids}, parse_type=FeatureGroup)
4971
5010
 
4972
5011
  def train_model(self, project_id: str, name: str = None, training_config: Union[dict, TrainingConfig] = None, feature_group_ids: list = None, refresh_schedule: str = None, custom_algorithms: list = None, custom_algorithms_only: bool = False, custom_algorithm_configs: dict = None, builtin_algorithms: list = None, cpu_size: str = None, memory: int = None, algorithm_training_configs: list = None) -> Model:
4973
- """Train a model for the specified project.
4974
-
4975
- This method trains a model in the given project, using user-specified training configurations defined in the `getTrainingConfigOptions` method.
4976
-
5012
+ """Create a new model and start its training in the given project.
4977
5013
 
4978
5014
  Args:
4979
5015
  project_id (str): The unique ID associated with the project.
@@ -4984,7 +5020,7 @@ Creates a new feature group defined as the union of other feature group versions
4984
5020
  custom_algorithms (list): List of user-defined algorithms to train. If not set, the default enabled custom algorithms will be used.
4985
5021
  custom_algorithms_only (bool): Whether to only run custom algorithms.
4986
5022
  custom_algorithm_configs (dict): Configs for each user-defined algorithm; key is the algorithm name, value is the config serialized to JSON.
4987
- builtin_algorithms (list): List of IDs of the builtin algorithms provided by Abacus.AI to train. If not set, all applicable builtin algorithms will be used.
5023
+ builtin_algorithms (list): List of algorithm names or algorithm IDs of the builtin algorithms provided by Abacus.AI to train. If not set, all applicable builtin algorithms will be used.
4988
5024
  cpu_size (str): Size of the CPU for the user-defined algorithms during training.
4989
5025
  memory (int): Memory (in GB) for the user-defined algorithms during training.
4990
5026
  algorithm_training_configs (list): List of algorithm specifc training configs that will be part of the model training AutoML run.
@@ -5142,7 +5178,7 @@ Creates a new feature group defined as the union of other feature group versions
5142
5178
  deployment_ids (list): List of unique string identifiers of deployments to automatically deploy to.
5143
5179
  feature_group_ids (list): List of feature group IDs provided by the user to train the model on.
5144
5180
  custom_algorithms (list): List of user-defined algorithms to train. If not set, will honor the runs from the last time and applicable new custom algorithms.
5145
- builtin_algorithms (list): List of the built-in algorithms provided by Abacus.AI to train. If not set, will honor the runs from the last time and applicable new built-in algorithms.
5181
+ builtin_algorithms (list): List of algorithm names or algorithm IDs of Abacus.AI built-in algorithms to train. If not set, will honor the runs from the last time and applicable new built-in algorithms.
5146
5182
  custom_algorithm_configs (dict): User-defined training configs for each custom algorithm.
5147
5183
  cpu_size (str): Size of the CPU for the user-defined algorithms during training.
5148
5184
  memory (int): Memory (in GB) for the user-defined algorithms during training.
@@ -5167,13 +5203,13 @@ Creates a new feature group defined as the union of other feature group versions
5167
5203
  model_version (str): The unique identifier of the model version to delete."""
5168
5204
  return self._call_api('deleteModelVersion', 'DELETE', query_params={'modelVersion': model_version})
5169
5205
 
5170
- def export_model_artifact_as_feature_group(self, model_version: str, table_name: str, artifact_type: str) -> FeatureGroup:
5206
+ def export_model_artifact_as_feature_group(self, model_version: str, table_name: str, artifact_type: Union[dict, EvalArtifactType] = None) -> FeatureGroup:
5171
5207
  """Exports metric artifact data for a model as a feature group.
5172
5208
 
5173
5209
  Args:
5174
5210
  model_version (str): Unique string identifier for the version of the model.
5175
5211
  table_name (str): Name of the feature group table to create.
5176
- artifact_type (str): EvalArtifact enum specifying which artifact to export.
5212
+ artifact_type (EvalArtifactType): eval artifact type to export.
5177
5213
 
5178
5214
  Returns:
5179
5215
  FeatureGroup: The created feature group."""
@@ -6641,7 +6677,7 @@ Creates a new feature group defined as the union of other feature group versions
6641
6677
 
6642
6678
  Returns:
6643
6679
  FeatureGroupRow: The feature group row that was upserted."""
6644
- return self._call_api('upsertData', 'POST', query_params={'streamingToken': streaming_token}, body={'featureGroupId': feature_group_id, 'data': data}, parse_type=FeatureGroupRow)
6680
+ return self._proxy_request('upsertData', 'POST', query_params={'streamingToken': streaming_token}, body={'featureGroupId': feature_group_id, 'data': data}, parse_type=FeatureGroupRow, is_sync=True)
6645
6681
 
6646
6682
  def upsert_online_data(self, feature_group_id: str, data: dict) -> FeatureGroupRow:
6647
6683
  """Update new data into the feature group for a given lookup key record ID if the record ID is found; otherwise, insert new data into the feature group.
@@ -7065,13 +7101,13 @@ Creates a new feature group defined as the union of other feature group versions
7065
7101
  Algorithm: The new custom model can be used for training."""
7066
7102
  return self._call_api('updateAlgorithm', 'PATCH', query_params={}, body={'algorithm': algorithm, 'sourceCode': source_code, 'trainingDataParameterNamesMapping': training_data_parameter_names_mapping, 'trainingConfigParameterName': training_config_parameter_name, 'trainFunctionName': train_function_name, 'predictFunctionName': predict_function_name, 'predictManyFunctionName': predict_many_function_name, 'initializeFunctionName': initialize_function_name, 'configOptions': config_options, 'isDefaultEnabled': is_default_enabled, 'useGpu': use_gpu, 'packageRequirements': package_requirements}, parse_type=Algorithm)
7067
7103
 
7068
- def list_builtin_algorithms(self, project_id: str, feature_group_ids: list, training_config: dict = None) -> List[Algorithm]:
7069
- """Return list of built-in algorithms based on given input.
7104
+ def list_builtin_algorithms(self, project_id: str, feature_group_ids: list, training_config: Union[dict, TrainingConfig] = None) -> List[Algorithm]:
7105
+ """Return list of built-in algorithms based on given input data and training config.
7070
7106
 
7071
7107
  Args:
7072
7108
  project_id (str): Unique string identifier associated with the project.
7073
- feature_group_ids (list): List of feature group identifiers applied to the algorithms.
7074
- training_config (dict): The training configuration key/value pairs used to train with the algorithm.
7109
+ feature_group_ids (list): List of feature group IDs specifying input data.
7110
+ training_config (TrainingConfig): The training config to be used for model training.
7075
7111
 
7076
7112
  Returns:
7077
7113
  list[Algorithm]: List of applicable builtin algorithms."""
@@ -7396,13 +7432,6 @@ Creates a new feature group defined as the union of other feature group versions
7396
7432
  ExternalApplication: The updated External Application."""
7397
7433
  return self._call_api('updateExternalApplication', 'POST', query_params={}, body={'externalApplicationId': external_application_id, 'name': name, 'theme': theme}, parse_type=ExternalApplication)
7398
7434
 
7399
- def list_external_applications(self) -> List[ExternalApplication]:
7400
- """Lists External Applications in an organization.
7401
-
7402
- Returns:
7403
- list[ExternalApplication]: List of External Applications."""
7404
- return self._call_api('listExternalApplications', 'POST', query_params={}, body={}, parse_type=ExternalApplication)
7405
-
7406
7435
  def delete_external_application(self, external_application_id: str):
7407
7436
  """Deletes an External Application.
7408
7437
 
@@ -7483,7 +7512,7 @@ Creates a new feature group defined as the union of other feature group versions
7483
7512
  LlmParameters: The parameters for LLM using the given inputs."""
7484
7513
  return self._call_api('getLLMParameters', 'POST', query_params={}, body={'prompt': prompt, 'systemMessage': system_message, 'llmName': llm_name, 'maxTokens': max_tokens}, parse_type=LlmParameters, timeout=300)
7485
7514
 
7486
- def generate_code_for_data_query_using_llm(self, query: str, feature_group_ids: list, prompt_context: str = None, llm_name: str = None, temperature: float = None) -> str:
7515
+ def generate_code_for_data_query_using_llm(self, query: str, feature_group_ids: list, prompt_context: str = None, llm_name: str = None, temperature: float = None) -> LlmGeneratedCode:
7487
7516
  """Execute a data query using a large language model in an async fashion.
7488
7517
 
7489
7518
  Args:
@@ -7491,8 +7520,24 @@ Creates a new feature group defined as the union of other feature group versions
7491
7520
  feature_group_ids (list): A list of feature group IDs that the query should be executed against.
7492
7521
  prompt_context (str): The context message used to construct the prompt for the language model. If not provide, a default context message is used.
7493
7522
  llm_name (str): The name of the language model to use. If not provided, the default language model is used.
7494
- temperature (float): The temperature to use for the language model if supported. If not provided, the default temperature is used."""
7495
- return self._proxy_request('GenerateCodeForDataQueryUsingLlm', 'POST', query_params={}, body={'query': query, 'featureGroupIds': feature_group_ids, 'promptContext': prompt_context, 'llmName': llm_name, 'temperature': temperature})
7523
+ temperature (float): The temperature to use for the language model if supported. If not provided, the default temperature is used.
7524
+
7525
+ Returns:
7526
+ LlmGeneratedCode: The generated SQL code."""
7527
+ return self._proxy_request('GenerateCodeForDataQueryUsingLlm', 'POST', query_params={}, body={'query': query, 'featureGroupIds': feature_group_ids, 'promptContext': prompt_context, 'llmName': llm_name, 'temperature': temperature}, parse_type=LlmGeneratedCode)
7528
+
7529
+ def extract_data_using_llm(self, field_descriptors: list, document_id: str = None, document_text: str = None, llm_name: str = None) -> ExtractedFields:
7530
+ """Extract fields from a document using a large language model.
7531
+
7532
+ Args:
7533
+ field_descriptors (list): A list of fields to extract from the document.
7534
+ document_id (str): The ID of the document to query.
7535
+ document_text (str): The text of the document to query. Only used if document_id is not provided.
7536
+ llm_name (str): The name of the language model to use. If not provided, the default language model is used.
7537
+
7538
+ Returns:
7539
+ ExtractedFields: The response from the document query."""
7540
+ return self._call_api('extractDataUsingLLM', 'POST', query_params={}, body={'fieldDescriptors': field_descriptors, 'documentId': document_id, 'documentText': document_text, 'llmName': llm_name}, parse_type=ExtractedFields)
7496
7541
 
7497
7542
  def create_document_retriever(self, project_id: str, name: str, feature_group_id: str, document_retriever_config: Union[dict, DocumentRetrieverConfig] = None) -> DocumentRetriever:
7498
7543
  """Returns a document retriever that stores embeddings for document chunks in a feature group.
@@ -162,7 +162,7 @@ class DocumentRetriever(AbstractApiClass):
162
162
  """
163
163
  return self.describe().latest_document_retriever_version.status
164
164
 
165
- def get_matching_documents(self, query: str, filters: dict = None, limit: int = None, result_columns: list = None, max_words: int = None, num_retrieval_margin_words: int = None, max_words_per_chunk: int = None):
165
+ def get_matching_documents(self, query: str, filters: dict = None, limit: int = None, result_columns: list = None, max_words: int = None, num_retrieval_margin_words: int = None, max_words_per_chunk: int = None, score_multiplier_column: str = None):
166
166
  """
167
167
  Lookup document retrievers and return the matching documents from the document retriever deployed with given query.
168
168
 
@@ -179,8 +179,9 @@ class DocumentRetriever(AbstractApiClass):
179
179
  max_words (int): If provided, will limit the total number of words in the results to the value specified.
180
180
  num_retrieval_margin_words (int): If provided, will add this number of words from left and right of the returned chunks.
181
181
  max_words_per_chunk (int): If provided, will limit the number of words in each chunk to the value specified. If the value provided is smaller than the actual size of chunk on disk, which is determined during document retriever creation, the actual size of chunk will be used. I.e, chunks looked up from document retrievers will not be split into smaller chunks during lookup due to this setting.
182
+ score_multiplier_column (str): If provided, will use the values in this column to modify the relevance score of the returned chunks. Values in this column must be numeric.
182
183
 
183
184
  Returns:
184
185
  list[DocumentRetrieverLookupResult]: The relevant documentation results found from the document retriever.
185
186
  """
186
- return self.client.get_matching_documents(self.document_retriever_id, query, filters, limit, result_columns, max_words, num_retrieval_margin_words, max_words_per_chunk)
187
+ return self.client.get_matching_documents(self.document_retriever_id, query, filters, limit, result_columns, max_words, num_retrieval_margin_words, max_words_per_chunk, score_multiplier_column)
@@ -0,0 +1,35 @@
1
+ from .return_class import AbstractApiClass
2
+
3
+
4
+ class ExtractedFields(AbstractApiClass):
5
+ """
6
+ The fields extracted from a document.
7
+
8
+ Args:
9
+ client (ApiClient): An authenticated API Client instance
10
+ data (dict): The data for the document.
11
+ rawLlmResponse (str): The raw llm response. Only returned if it could not be parsed to json.
12
+ """
13
+
14
+ def __init__(self, client, data=None, rawLlmResponse=None):
15
+ super().__init__(client, None)
16
+ self.data = data
17
+ self.raw_llm_response = rawLlmResponse
18
+
19
+ def __repr__(self):
20
+ repr_dict = {f'data': repr(
21
+ self.data), f'raw_llm_response': repr(self.raw_llm_response)}
22
+ class_name = "ExtractedFields"
23
+ repr_str = ',\n '.join([f'{key}={value}' for key, value in repr_dict.items(
24
+ ) if getattr(self, key, None) is not None])
25
+ return f"{class_name}({repr_str})"
26
+
27
+ def to_dict(self):
28
+ """
29
+ Get a dict representation of the parameters in this class
30
+
31
+ Returns:
32
+ dict: The dict value representation of the class parameters
33
+ """
34
+ resp = {'data': self.data, 'raw_llm_response': self.raw_llm_response}
35
+ return {key: value for key, value in resp.items() if value is not None}
@@ -0,0 +1,32 @@
1
+ from .return_class import AbstractApiClass
2
+
3
+
4
+ class LlmGeneratedCode(AbstractApiClass):
5
+ """
6
+ Code generated by LLM.
7
+
8
+ Args:
9
+ client (ApiClient): An authenticated API Client instance
10
+ sql (str): SQL query generated by LLM.
11
+ """
12
+
13
+ def __init__(self, client, sql=None):
14
+ super().__init__(client, None)
15
+ self.sql = sql
16
+
17
+ def __repr__(self):
18
+ repr_dict = {f'sql': repr(self.sql)}
19
+ class_name = "LlmGeneratedCode"
20
+ repr_str = ',\n '.join([f'{key}={value}' for key, value in repr_dict.items(
21
+ ) if getattr(self, key, None) is not None])
22
+ return f"{class_name}({repr_str})"
23
+
24
+ def to_dict(self):
25
+ """
26
+ Get a dict representation of the parameters in this class
27
+
28
+ Returns:
29
+ dict: The dict value representation of the class parameters
30
+ """
31
+ resp = {'sql': self.sql}
32
+ return {key: value for key, value in resp.items() if value is not None}
@@ -282,7 +282,7 @@ class Model(AbstractApiClass):
282
282
  deployment_ids (list): List of unique string identifiers of deployments to automatically deploy to.
283
283
  feature_group_ids (list): List of feature group IDs provided by the user to train the model on.
284
284
  custom_algorithms (list): List of user-defined algorithms to train. If not set, will honor the runs from the last time and applicable new custom algorithms.
285
- builtin_algorithms (list): List of the built-in algorithms provided by Abacus.AI to train. If not set, will honor the runs from the last time and applicable new built-in algorithms.
285
+ builtin_algorithms (list): List of algorithm names or algorithm IDs of Abacus.AI built-in algorithms to train. If not set, will honor the runs from the last time and applicable new built-in algorithms.
286
286
  custom_algorithm_configs (dict): User-defined training configs for each custom algorithm.
287
287
  cpu_size (str): Size of the CPU for the user-defined algorithms during training.
288
288
  memory (int): Memory (in GB) for the user-defined algorithms during training.
@@ -1,6 +1,7 @@
1
1
  import time
2
+ from typing import Union
2
3
 
3
- from .api_class import DeployableAlgorithm, TrainingConfig
4
+ from .api_class import DeployableAlgorithm, EvalArtifactType, TrainingConfig
4
5
  from .code_source import CodeSource
5
6
  from .return_class import AbstractApiClass
6
7
 
@@ -148,13 +149,13 @@ class ModelVersion(AbstractApiClass):
148
149
  """
149
150
  return self.client.delete_model_version(self.model_version)
150
151
 
151
- def export_model_artifact_as_feature_group(self, table_name: str, artifact_type: str):
152
+ def export_model_artifact_as_feature_group(self, table_name: str, artifact_type: Union[dict, EvalArtifactType] = None):
152
153
  """
153
154
  Exports metric artifact data for a model as a feature group.
154
155
 
155
156
  Args:
156
157
  table_name (str): Name of the feature group table to create.
157
- artifact_type (str): EvalArtifact enum specifying which artifact to export.
158
+ artifact_type (EvalArtifactType): eval artifact type to export.
158
159
 
159
160
  Returns:
160
161
  FeatureGroup: The created feature group.
@@ -220,10 +220,7 @@ class Project(AbstractApiClass):
220
220
 
221
221
  def train_model(self, name: str = None, training_config: Union[dict, TrainingConfig] = None, feature_group_ids: list = None, refresh_schedule: str = None, custom_algorithms: list = None, custom_algorithms_only: bool = False, custom_algorithm_configs: dict = None, builtin_algorithms: list = None, cpu_size: str = None, memory: int = None, algorithm_training_configs: list = None):
222
222
  """
223
- Train a model for the specified project.
224
-
225
- This method trains a model in the given project, using user-specified training configurations defined in the `getTrainingConfigOptions` method.
226
-
223
+ Create a new model and start its training in the given project.
227
224
 
228
225
  Args:
229
226
  name (str): The name of the model. Defaults to "<Project Name> Model".
@@ -233,7 +230,7 @@ class Project(AbstractApiClass):
233
230
  custom_algorithms (list): List of user-defined algorithms to train. If not set, the default enabled custom algorithms will be used.
234
231
  custom_algorithms_only (bool): Whether to only run custom algorithms.
235
232
  custom_algorithm_configs (dict): Configs for each user-defined algorithm; key is the algorithm name, value is the config serialized to JSON.
236
- builtin_algorithms (list): List of IDs of the builtin algorithms provided by Abacus.AI to train. If not set, all applicable builtin algorithms will be used.
233
+ builtin_algorithms (list): List of algorithm names or algorithm IDs of the builtin algorithms provided by Abacus.AI to train. If not set, all applicable builtin algorithms will be used.
237
234
  cpu_size (str): Size of the CPU for the user-defined algorithms during training.
238
235
  memory (int): Memory (in GB) for the user-defined algorithms during training.
239
236
  algorithm_training_configs (list): List of algorithm specifc training configs that will be part of the model training AutoML run.
@@ -567,13 +564,13 @@ class Project(AbstractApiClass):
567
564
  """
568
565
  return self.client.list_graph_dashboards(self.project_id)
569
566
 
570
- def list_builtin_algorithms(self, feature_group_ids: list, training_config: dict = None):
567
+ def list_builtin_algorithms(self, feature_group_ids: list, training_config: Union[dict, TrainingConfig] = None):
571
568
  """
572
- Return list of built-in algorithms based on given input.
569
+ Return list of built-in algorithms based on given input data and training config.
573
570
 
574
571
  Args:
575
- feature_group_ids (list): List of feature group identifiers applied to the algorithms.
576
- training_config (dict): The training configuration key/value pairs used to train with the algorithm.
572
+ feature_group_ids (list): List of feature group IDs specifying input data.
573
+ training_config (TrainingConfig): The training config to be used for model training.
577
574
 
578
575
  Returns:
579
576
  list[Algorithm]: List of applicable builtin algorithms.