abacusai 0.75.0__tar.gz → 0.75.6__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 (643) hide show
  1. {abacusai-0.75.0/abacusai.egg-info → abacusai-0.75.6}/PKG-INFO +6 -3
  2. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/__init__.py +1 -1
  3. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/agent.py +7 -3
  4. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/algorithm.py +5 -3
  5. abacusai-0.75.6/abacusai/annotation_document.py +35 -0
  6. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_class/__init__.py +1 -1
  7. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_class/abstract.py +9 -2
  8. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_class/batch_prediction.py +22 -1
  9. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_class/feature_group.py +10 -0
  10. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_class/model.py +9 -3
  11. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_class/refresh.py +4 -0
  12. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/batch_prediction.py +6 -5
  13. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/batch_prediction_version.py +7 -5
  14. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/client.py +130 -32
  15. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/deployment.py +10 -6
  16. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/deployment_conversation.py +3 -2
  17. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_group.py +5 -4
  18. abacusai-0.75.6/abacusai/feature_group_document.py +31 -0
  19. abacusai-0.75.6/abacusai/feature_group_row.py +35 -0
  20. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/function_logs.py +0 -2
  21. abacusai-0.75.6/abacusai/holdout_analysis.py +82 -0
  22. abacusai-0.75.6/abacusai/holdout_analysis_version.py +87 -0
  23. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/llm_response.py +5 -3
  24. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model.py +13 -8
  25. abacusai-0.75.6/abacusai/model_metrics.py +43 -0
  26. abacusai-0.75.6/abacusai/page_data.py +39 -0
  27. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/prediction_client.py +8 -6
  28. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/prediction_operator.py +15 -3
  29. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/prediction_operator_version.py +11 -3
  30. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/project.py +15 -2
  31. abacusai-0.75.6/abacusai/public.pem +5 -0
  32. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/refresh_policy.py +5 -3
  33. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/schema.py +1 -1
  34. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/user_exception.py +0 -2
  35. {abacusai-0.75.0 → abacusai-0.75.6/abacusai.egg-info}/PKG-INFO +6 -3
  36. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai.egg-info/SOURCES.txt +27 -1
  37. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai.egg-info/requires.txt +3 -2
  38. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/agent/index.rst.txt +5 -1
  39. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/algorithm/index.rst.txt +3 -1
  40. abacusai-0.75.6/docs/_sources/autoapi/abacusai/annotation_document/index.rst.txt +53 -0
  41. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_class/abstract/index.rst.txt +4 -0
  42. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_class/batch_prediction/index.rst.txt +36 -0
  43. abacusai-0.75.6/docs/_sources/autoapi/abacusai/api_class/blob_input/index.rst.txt +64 -0
  44. abacusai-0.75.6/docs/_sources/autoapi/abacusai/api_class/document_retriever/index.rst.txt +58 -0
  45. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_class/enums/index.rst.txt +56 -0
  46. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_class/feature_group/index.rst.txt +8 -0
  47. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_class/index.rst.txt +365 -107
  48. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_class/model/index.rst.txt +38 -1
  49. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_class/refresh/index.rst.txt +4 -0
  50. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/batch_prediction/index.rst.txt +3 -3
  51. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/batch_prediction_version/index.rst.txt +3 -3
  52. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/chat_session/index.rst.txt +3 -1
  53. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/client/index.rst.txt +385 -37
  54. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/deployment/index.rst.txt +18 -2
  55. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/deployment_conversation/index.rst.txt +6 -4
  56. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_group/index.rst.txt +6 -4
  57. abacusai-0.75.6/docs/_sources/autoapi/abacusai/feature_group_document/index.rst.txt +49 -0
  58. abacusai-0.75.6/docs/_sources/autoapi/abacusai/feature_group_row/index.rst.txt +53 -0
  59. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_group_version/index.rst.txt +5 -1
  60. abacusai-0.75.6/docs/_sources/autoapi/abacusai/holdout_analysis/index.rst.txt +96 -0
  61. abacusai-0.75.6/docs/_sources/autoapi/abacusai/holdout_analysis_version/index.rst.txt +100 -0
  62. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/index.rst.txt +669 -93
  63. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/llm_response/index.rst.txt +3 -1
  64. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model/index.rst.txt +12 -4
  65. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_metrics/index.rst.txt +13 -9
  66. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/module/index.rst.txt +1 -1
  67. abacusai-0.75.6/docs/_sources/autoapi/abacusai/page_data/index.rst.txt +57 -0
  68. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/pipeline/index.rst.txt +11 -0
  69. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/pipeline_step/index.rst.txt +11 -0
  70. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/prediction_client/index.rst.txt +34 -2
  71. abacusai-0.75.6/docs/_sources/autoapi/abacusai/prediction_operator/index.rst.txt +160 -0
  72. abacusai-0.75.6/docs/_sources/autoapi/abacusai/prediction_operator_version/index.rst.txt +73 -0
  73. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/project/index.rst.txt +24 -1
  74. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/refresh_policy/index.rst.txt +3 -1
  75. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/schema/index.rst.txt +1 -1
  76. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/agent/index.html +13 -6
  77. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/agent_version/index.html +8 -3
  78. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/ai_building_task/index.html +8 -3
  79. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/algorithm/index.html +10 -4
  80. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/annotation/index.html +8 -3
  81. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/annotation_config/index.html +10 -5
  82. abacusai-0.75.6/docs/autoapi/abacusai/annotation_document/index.html +337 -0
  83. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/annotation_entry/index.html +10 -5
  84. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/annotations_status/index.html +8 -3
  85. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_class/abstract/index.html +5 -0
  86. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_class/batch_prediction/index.html +42 -3
  87. abacusai-0.75.6/docs/autoapi/abacusai/api_class/blob_input/index.html +202 -0
  88. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_class/dataset/index.html +4 -4
  89. abacusai-0.75.6/docs/autoapi/abacusai/api_class/document_retriever/index.html +177 -0
  90. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_class/enums/index.html +58 -2
  91. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_class/feature_group/index.html +10 -0
  92. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_class/index.html +603 -293
  93. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_class/model/index.html +52 -11
  94. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_class/refresh/index.html +7 -2
  95. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_client_utils/index.html +8 -3
  96. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_endpoint/index.html +8 -3
  97. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_key/index.html +8 -3
  98. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/application_connector/index.html +8 -3
  99. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/batch_prediction/index.html +10 -5
  100. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/batch_prediction_version/index.html +10 -5
  101. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/categorical_range_violation/index.html +8 -3
  102. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/chat_message/index.html +8 -3
  103. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/chat_session/index.html +10 -4
  104. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/client/index.html +489 -54
  105. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/code_source/index.html +8 -3
  106. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/concatenation_config/index.html +8 -3
  107. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/cryptography/index.html +8 -3
  108. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/custom_loss_function/index.html +8 -3
  109. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/custom_metric/index.html +8 -3
  110. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/custom_metric_version/index.html +8 -3
  111. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/custom_train_function_info/index.html +8 -3
  112. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/data_consistency_duplication/index.html +8 -3
  113. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/data_metrics/index.html +8 -3
  114. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/data_prep_logs/index.html +8 -3
  115. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/data_quality_results/index.html +8 -3
  116. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/database_connector/index.html +8 -3
  117. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/dataset/index.html +8 -3
  118. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/dataset_column/index.html +8 -3
  119. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/dataset_version/index.html +8 -3
  120. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/dataset_version_logs/index.html +8 -3
  121. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/deployment/index.html +25 -5
  122. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/deployment_auth_token/index.html +8 -3
  123. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/deployment_conversation/index.html +15 -7
  124. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/deployment_conversation_event/index.html +8 -3
  125. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/document/index.html +8 -3
  126. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/document_annotation/index.html +8 -3
  127. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/document_retriever/index.html +10 -5
  128. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/document_retriever_config/index.html +8 -3
  129. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/document_retriever_lookup_result/index.html +8 -3
  130. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/document_retriever_version/index.html +8 -3
  131. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/document_store/index.html +8 -3
  132. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/document_store_import/index.html +8 -3
  133. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/drift_distribution/index.html +8 -3
  134. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/drift_distributions/index.html +8 -3
  135. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/eda/index.html +8 -3
  136. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/eda_chart_description/index.html +8 -3
  137. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/eda_collinearity/index.html +8 -3
  138. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/eda_data_consistency/index.html +8 -3
  139. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/eda_feature_association/index.html +8 -3
  140. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/eda_feature_collinearity/index.html +8 -3
  141. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/eda_forecasting_analysis/index.html +8 -3
  142. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/eda_version/index.html +8 -3
  143. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/embedding_feature_drift_distribution/index.html +8 -3
  144. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/execute_feature_group_operation/index.html +8 -3
  145. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature/index.html +8 -3
  146. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_distribution/index.html +8 -3
  147. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_drift_summary/index.html +8 -3
  148. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_group/index.html +15 -9
  149. abacusai-0.75.6/docs/autoapi/abacusai/feature_group_document/index.html +335 -0
  150. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_group_export/index.html +10 -5
  151. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_group_export_config/index.html +8 -3
  152. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_group_export_download_url/index.html +8 -3
  153. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_group_lineage/index.html +8 -3
  154. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_group_refresh_export_config/index.html +10 -5
  155. abacusai-0.75.6/docs/autoapi/abacusai/feature_group_row/index.html +337 -0
  156. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_group_template/index.html +10 -5
  157. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_group_template_variable_options/index.html +8 -3
  158. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_group_version/index.html +11 -4
  159. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_importance/index.html +8 -3
  160. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_mapping/index.html +8 -3
  161. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_record/index.html +8 -3
  162. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/file_connector/index.html +8 -3
  163. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/file_connector_instructions/index.html +8 -3
  164. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/file_connector_verification/index.html +8 -3
  165. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/forecasting_analysis_graph_data/index.html +8 -3
  166. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/function_logs/index.html +8 -3
  167. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/generated_pit_feature_config_option/index.html +8 -3
  168. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/graph_dashboard/index.html +10 -5
  169. abacusai-0.75.6/docs/autoapi/abacusai/holdout_analysis/index.html +405 -0
  170. abacusai-0.75.6/docs/autoapi/abacusai/holdout_analysis_version/index.html +399 -0
  171. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/index.html +924 -214
  172. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/indexing_config/index.html +10 -5
  173. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/inferred_feature_mappings/index.html +8 -3
  174. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/item_statistics/index.html +8 -3
  175. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/llm_code_block/index.html +8 -3
  176. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/llm_input/index.html +8 -3
  177. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/llm_parameters/index.html +8 -3
  178. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/llm_response/index.html +10 -4
  179. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model/index.html +16 -7
  180. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_artifacts_export/index.html +8 -3
  181. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_blueprint_export/index.html +8 -3
  182. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_blueprint_stage/index.html +8 -3
  183. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_location/index.html +8 -3
  184. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_metrics/index.html +16 -9
  185. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_monitor/index.html +8 -3
  186. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_monitor_org_summary/index.html +8 -3
  187. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_monitor_summary/index.html +8 -3
  188. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_monitor_summary_from_org/index.html +8 -3
  189. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_monitor_version/index.html +8 -3
  190. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_monitor_version_metric_data/index.html +8 -3
  191. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_training_type_for_deployment/index.html +8 -3
  192. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_upload/index.html +8 -3
  193. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/model_version/index.html +8 -3
  194. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/modification_lock_info/index.html +8 -3
  195. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/module/index.html +9 -4
  196. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/monitor_alert/index.html +8 -3
  197. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/monitor_alert_version/index.html +8 -3
  198. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/natural_language_explanation/index.html +8 -3
  199. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/nested_feature/index.html +8 -3
  200. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/null_violation/index.html +8 -3
  201. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/organization_group/index.html +8 -3
  202. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/organization_search_result/index.html +8 -3
  203. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/organization_secret/index.html +10 -5
  204. abacusai-0.75.6/docs/autoapi/abacusai/page_data/index.html +339 -0
  205. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/pipeline/index.html +27 -5
  206. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/pipeline_reference/index.html +8 -3
  207. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/pipeline_step/index.html +25 -3
  208. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/pipeline_step_version/index.html +8 -3
  209. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/pipeline_step_version_logs/index.html +8 -3
  210. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/pipeline_step_version_reference/index.html +8 -3
  211. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/pipeline_version/index.html +8 -3
  212. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/pipeline_version_logs/index.html +8 -3
  213. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/point_in_time_feature/index.html +8 -3
  214. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/point_in_time_group/index.html +8 -3
  215. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/point_in_time_group_feature/index.html +8 -3
  216. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/prediction_client/index.html +50 -5
  217. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/prediction_dataset/index.html +8 -3
  218. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/prediction_feature_group/index.html +8 -3
  219. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/prediction_input/index.html +8 -3
  220. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/prediction_metric/index.html +8 -3
  221. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/prediction_metric_version/index.html +10 -5
  222. abacusai-0.75.6/docs/autoapi/abacusai/prediction_operator/index.html +462 -0
  223. abacusai-0.75.6/docs/autoapi/abacusai/prediction_operator_version/index.html +356 -0
  224. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/problem_type/index.html +10 -5
  225. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/project/index.html +42 -5
  226. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/project_config/index.html +8 -3
  227. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/project_validation/index.html +8 -3
  228. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/python_function/index.html +8 -3
  229. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/python_function_validator/index.html +8 -3
  230. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/python_plot_function/index.html +8 -3
  231. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/range_violation/index.html +8 -3
  232. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/refresh_pipeline_run/index.html +8 -3
  233. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/refresh_policy/index.html +10 -4
  234. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/refresh_schedule/index.html +8 -3
  235. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/resolved_feature_group_template/index.html +8 -3
  236. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/return_class/index.html +8 -3
  237. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/schema/index.html +9 -4
  238. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/streaming_auth_token/index.html +8 -3
  239. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/streaming_client/index.html +8 -3
  240. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/streaming_connector/index.html +8 -3
  241. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/test_point_predictions/index.html +8 -3
  242. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/training_config_options/index.html +8 -3
  243. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/type_violation/index.html +8 -3
  244. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/upload/index.html +8 -3
  245. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/upload_part/index.html +8 -3
  246. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/use_case/index.html +8 -3
  247. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/use_case_requirements/index.html +8 -3
  248. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/user/index.html +8 -3
  249. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/user_exception/index.html +10 -5
  250. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/vector_store_lookup_result/index.html +12 -7
  251. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/webhook/index.html +10 -5
  252. {abacusai-0.75.0 → abacusai-0.75.6}/docs/genindex.html +616 -116
  253. abacusai-0.75.6/docs/objects.inv +0 -0
  254. {abacusai-0.75.0 → abacusai-0.75.6}/docs/py-modindex.html +50 -20
  255. abacusai-0.75.6/docs/searchindex.js +1 -0
  256. {abacusai-0.75.0 → abacusai-0.75.6}/setup.py +2 -2
  257. abacusai-0.75.0/abacusai/model_metrics.py +0 -39
  258. abacusai-0.75.0/abacusai/public.pem +0 -5
  259. abacusai-0.75.0/docs/objects.inv +0 -0
  260. abacusai-0.75.0/docs/searchindex.js +0 -1
  261. {abacusai-0.75.0 → abacusai-0.75.6}/.gitignore +0 -0
  262. {abacusai-0.75.0 → abacusai-0.75.6}/LICENSE +0 -0
  263. {abacusai-0.75.0 → abacusai-0.75.6}/README.md +0 -0
  264. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/agent_version.py +0 -0
  265. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/ai_building_task.py +0 -0
  266. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/annotation.py +0 -0
  267. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/annotation_config.py +0 -0
  268. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/annotation_entry.py +0 -0
  269. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/annotations_status.py +0 -0
  270. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_class/blob_input.py +0 -0
  271. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_class/dataset.py +0 -0
  272. /abacusai-0.75.0/abacusai/api_class/vector_store.py → /abacusai-0.75.6/abacusai/api_class/document_retriever.py +0 -0
  273. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_class/enums.py +0 -0
  274. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_class/project.py +0 -0
  275. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_class/python_functions.py +0 -0
  276. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_client_utils.py +0 -0
  277. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_endpoint.py +0 -0
  278. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/api_key.py +0 -0
  279. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/application_connector.py +0 -0
  280. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/categorical_range_violation.py +0 -0
  281. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/chat_message.py +0 -0
  282. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/chat_session.py +0 -0
  283. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/code_source.py +0 -0
  284. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/concatenation_config.py +0 -0
  285. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/cryptography.py +0 -0
  286. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/custom_loss_function.py +0 -0
  287. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/custom_metric.py +0 -0
  288. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/custom_metric_version.py +0 -0
  289. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/custom_train_function_info.py +0 -0
  290. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/data_consistency_duplication.py +0 -0
  291. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/data_metrics.py +0 -0
  292. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/data_prep_logs.py +0 -0
  293. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/data_quality_results.py +0 -0
  294. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/database_connector.py +0 -0
  295. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/dataset.py +0 -0
  296. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/dataset_column.py +0 -0
  297. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/dataset_version.py +0 -0
  298. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/dataset_version_logs.py +0 -0
  299. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/deployment_auth_token.py +0 -0
  300. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/deployment_conversation_event.py +0 -0
  301. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/document.py +0 -0
  302. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/document_annotation.py +0 -0
  303. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/document_retriever.py +0 -0
  304. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/document_retriever_config.py +0 -0
  305. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/document_retriever_lookup_result.py +0 -0
  306. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/document_retriever_version.py +0 -0
  307. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/document_store.py +0 -0
  308. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/document_store_import.py +0 -0
  309. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/drift_distribution.py +0 -0
  310. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/drift_distributions.py +0 -0
  311. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/eda.py +0 -0
  312. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/eda_chart_description.py +0 -0
  313. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/eda_collinearity.py +0 -0
  314. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/eda_data_consistency.py +0 -0
  315. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/eda_feature_association.py +0 -0
  316. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/eda_feature_collinearity.py +0 -0
  317. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/eda_forecasting_analysis.py +0 -0
  318. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/eda_version.py +0 -0
  319. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/embedding_feature_drift_distribution.py +0 -0
  320. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/execute_feature_group_operation.py +0 -0
  321. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature.py +0 -0
  322. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_distribution.py +0 -0
  323. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_drift_summary.py +0 -0
  324. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_group_export.py +0 -0
  325. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_group_export_config.py +0 -0
  326. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_group_export_download_url.py +0 -0
  327. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_group_lineage.py +0 -0
  328. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_group_refresh_export_config.py +0 -0
  329. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_group_template.py +0 -0
  330. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_group_template_variable_options.py +0 -0
  331. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_group_version.py +0 -0
  332. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_importance.py +0 -0
  333. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_mapping.py +0 -0
  334. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/feature_record.py +0 -0
  335. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/file_connector.py +0 -0
  336. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/file_connector_instructions.py +0 -0
  337. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/file_connector_verification.py +0 -0
  338. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/forecasting_analysis_graph_data.py +0 -0
  339. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/generated_pit_feature_config_option.py +0 -0
  340. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/graph_dashboard.py +0 -0
  341. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/indexing_config.py +0 -0
  342. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/inferred_feature_mappings.py +0 -0
  343. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/item_statistics.py +0 -0
  344. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/llm_code_block.py +0 -0
  345. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/llm_input.py +0 -0
  346. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/llm_parameters.py +0 -0
  347. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model_artifacts_export.py +0 -0
  348. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model_blueprint_export.py +0 -0
  349. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model_blueprint_stage.py +0 -0
  350. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model_location.py +0 -0
  351. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model_monitor.py +0 -0
  352. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model_monitor_org_summary.py +0 -0
  353. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model_monitor_summary.py +0 -0
  354. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model_monitor_summary_from_org.py +0 -0
  355. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model_monitor_version.py +0 -0
  356. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model_monitor_version_metric_data.py +0 -0
  357. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model_training_type_for_deployment.py +0 -0
  358. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model_upload.py +0 -0
  359. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/model_version.py +0 -0
  360. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/modification_lock_info.py +0 -0
  361. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/module.py +0 -0
  362. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/monitor_alert.py +0 -0
  363. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/monitor_alert_version.py +0 -0
  364. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/natural_language_explanation.py +0 -0
  365. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/nested_feature.py +0 -0
  366. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/notebook_completion.py +0 -0
  367. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/notebook_template.py +0 -0
  368. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/null_violation.py +0 -0
  369. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/organization_group.py +0 -0
  370. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/organization_search_result.py +0 -0
  371. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/organization_secret.py +0 -0
  372. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/pipeline.py +0 -0
  373. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/pipeline_reference.py +0 -0
  374. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/pipeline_step.py +0 -0
  375. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/pipeline_step_version.py +0 -0
  376. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/pipeline_step_version_logs.py +0 -0
  377. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/pipeline_step_version_reference.py +0 -0
  378. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/pipeline_version.py +0 -0
  379. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/pipeline_version_logs.py +0 -0
  380. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/point_in_time_feature.py +0 -0
  381. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/point_in_time_group.py +0 -0
  382. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/point_in_time_group_feature.py +0 -0
  383. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/prediction_dataset.py +0 -0
  384. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/prediction_feature_group.py +0 -0
  385. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/prediction_input.py +0 -0
  386. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/prediction_metric.py +0 -0
  387. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/prediction_metric_version.py +0 -0
  388. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/problem_type.py +0 -0
  389. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/project_config.py +0 -0
  390. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/project_validation.py +0 -0
  391. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/python_function.py +0 -0
  392. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/python_function_validator.py +0 -0
  393. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/python_plot_function.py +0 -0
  394. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/range_violation.py +0 -0
  395. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/refresh_pipeline_run.py +0 -0
  396. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/refresh_schedule.py +0 -0
  397. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/requirements.txt +0 -0
  398. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/resolved_feature_group_template.py +0 -0
  399. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/return_class.py +0 -0
  400. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/streaming_auth_token.py +0 -0
  401. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/streaming_client.py +0 -0
  402. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/streaming_connector.py +0 -0
  403. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/test_point_predictions.py +0 -0
  404. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/training_config_options.py +0 -0
  405. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/type_violation.py +0 -0
  406. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/upload.py +0 -0
  407. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/upload_part.py +0 -0
  408. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/use_case.py +0 -0
  409. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/use_case_requirements.py +0 -0
  410. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/user.py +0 -0
  411. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/vector_store_lookup_result.py +0 -0
  412. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai/webhook.py +0 -0
  413. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai.egg-info/dependency_links.txt +0 -0
  414. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai.egg-info/top_level.txt +0 -0
  415. {abacusai-0.75.0 → abacusai-0.75.6}/abacusai.egg-info/zip-safe +0 -0
  416. {abacusai-0.75.0 → abacusai-0.75.6}/docs/.buildinfo +0 -0
  417. {abacusai-0.75.0 → abacusai-0.75.6}/docs/.nojekyll +0 -0
  418. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/agent_version/index.rst.txt +0 -0
  419. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/ai_building_task/index.rst.txt +0 -0
  420. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/annotation/index.rst.txt +0 -0
  421. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/annotation_config/index.rst.txt +0 -0
  422. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/annotation_entry/index.rst.txt +0 -0
  423. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/annotations_status/index.rst.txt +0 -0
  424. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_class/dataset/index.rst.txt +0 -0
  425. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_class/project/index.rst.txt +0 -0
  426. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_class/python_function_argument/index.rst.txt +0 -0
  427. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_class/python_functions/index.rst.txt +0 -0
  428. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_class/vector_store/index.rst.txt +0 -0
  429. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_client_utils/index.rst.txt +0 -0
  430. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_endpoint/index.rst.txt +0 -0
  431. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/api_key/index.rst.txt +0 -0
  432. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/application_connector/index.rst.txt +0 -0
  433. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/categorical_range_violation/index.rst.txt +0 -0
  434. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/chat_bot_response/index.rst.txt +0 -0
  435. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/chat_message/index.rst.txt +0 -0
  436. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/code_source/index.rst.txt +0 -0
  437. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/concatenation_config/index.rst.txt +0 -0
  438. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/cryptography/index.rst.txt +0 -0
  439. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/custom_loss_function/index.rst.txt +0 -0
  440. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/custom_metric/index.rst.txt +0 -0
  441. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/custom_metric_version/index.rst.txt +0 -0
  442. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/custom_train_function_info/index.rst.txt +0 -0
  443. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/data_consistency_duplication/index.rst.txt +0 -0
  444. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/data_filter/index.rst.txt +0 -0
  445. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/data_metrics/index.rst.txt +0 -0
  446. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/data_prep_logs/index.rst.txt +0 -0
  447. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/data_quality_results/index.rst.txt +0 -0
  448. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/database_connector/index.rst.txt +0 -0
  449. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/dataset/index.rst.txt +0 -0
  450. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/dataset_column/index.rst.txt +0 -0
  451. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/dataset_version/index.rst.txt +0 -0
  452. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/dataset_version_logs/index.rst.txt +0 -0
  453. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/deployment_auth_token/index.rst.txt +0 -0
  454. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/deployment_conversation_event/index.rst.txt +0 -0
  455. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/document/index.rst.txt +0 -0
  456. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/document_annotation/index.rst.txt +0 -0
  457. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/document_retriever/index.rst.txt +0 -0
  458. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/document_retriever_config/index.rst.txt +0 -0
  459. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/document_retriever_lookup_result/index.rst.txt +0 -0
  460. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/document_retriever_version/index.rst.txt +0 -0
  461. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/document_store/index.rst.txt +0 -0
  462. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/document_store_import/index.rst.txt +0 -0
  463. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/drift_distribution/index.rst.txt +0 -0
  464. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/drift_distributions/index.rst.txt +0 -0
  465. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/eda/index.rst.txt +0 -0
  466. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/eda_chart_description/index.rst.txt +0 -0
  467. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/eda_collinearity/index.rst.txt +0 -0
  468. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/eda_data_consistency/index.rst.txt +0 -0
  469. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/eda_feature_association/index.rst.txt +0 -0
  470. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/eda_feature_collinearity/index.rst.txt +0 -0
  471. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/eda_forecasting_analysis/index.rst.txt +0 -0
  472. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/eda_leakage_detection/index.rst.txt +0 -0
  473. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/eda_version/index.rst.txt +0 -0
  474. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/embedding_feature_drift_distribution/index.rst.txt +0 -0
  475. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/execute_feature_group_operation/index.rst.txt +0 -0
  476. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/execute_fg_operation/index.rst.txt +0 -0
  477. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature/index.rst.txt +0 -0
  478. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_distribution/index.rst.txt +0 -0
  479. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_drift_summary/index.rst.txt +0 -0
  480. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_group_export/index.rst.txt +0 -0
  481. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_group_export_config/index.rst.txt +0 -0
  482. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_group_export_download_url/index.rst.txt +0 -0
  483. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_group_lineage/index.rst.txt +0 -0
  484. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_group_metrics/index.rst.txt +0 -0
  485. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_group_refresh_export_config/index.rst.txt +0 -0
  486. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_group_template/index.rst.txt +0 -0
  487. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_group_template_variable_options/index.rst.txt +0 -0
  488. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_importance/index.rst.txt +0 -0
  489. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_mapping/index.rst.txt +0 -0
  490. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/feature_record/index.rst.txt +0 -0
  491. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/file_connector/index.rst.txt +0 -0
  492. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/file_connector_instructions/index.rst.txt +0 -0
  493. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/file_connector_verification/index.rst.txt +0 -0
  494. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/forecasting_analysis_graph_data/index.rst.txt +0 -0
  495. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/function_logs/index.rst.txt +0 -0
  496. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/generated_pit_feature_config_option/index.rst.txt +0 -0
  497. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/graph_dashboard/index.rst.txt +0 -0
  498. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/indexing_config/index.rst.txt +0 -0
  499. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/inferred_feature_mappings/index.rst.txt +0 -0
  500. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/item_statistics/index.rst.txt +0 -0
  501. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/language_detection_prediction/index.rst.txt +0 -0
  502. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/leakage_duplication/index.rst.txt +0 -0
  503. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/llm_code_block/index.rst.txt +0 -0
  504. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/llm_input/index.rst.txt +0 -0
  505. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/llm_parameters/index.rst.txt +0 -0
  506. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/llm_search_result/index.rst.txt +0 -0
  507. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_artifacts_export/index.rst.txt +0 -0
  508. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_blueprint_export/index.rst.txt +0 -0
  509. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_blueprint_stage/index.rst.txt +0 -0
  510. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_location/index.rst.txt +0 -0
  511. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_monitor/index.rst.txt +0 -0
  512. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_monitor_org_summary/index.rst.txt +0 -0
  513. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_monitor_summary/index.rst.txt +0 -0
  514. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_monitor_summary_from_org/index.rst.txt +0 -0
  515. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_monitor_version/index.rst.txt +0 -0
  516. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_monitor_version_metric_data/index.rst.txt +0 -0
  517. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_training_type_for_deployment/index.rst.txt +0 -0
  518. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_upload/index.rst.txt +0 -0
  519. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/model_version/index.rst.txt +0 -0
  520. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/modification_lock_info/index.rst.txt +0 -0
  521. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/monitor_alert/index.rst.txt +0 -0
  522. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/monitor_alert_version/index.rst.txt +0 -0
  523. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/natural_language_explanation/index.rst.txt +0 -0
  524. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/nested_feature/index.rst.txt +0 -0
  525. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/nlp_classification_prediction/index.rst.txt +0 -0
  526. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/nlp_sentiment_prediction/index.rst.txt +0 -0
  527. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/null_violation/index.rst.txt +0 -0
  528. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/organization_group/index.rst.txt +0 -0
  529. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/organization_search_result/index.rst.txt +0 -0
  530. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/organization_secret/index.rst.txt +0 -0
  531. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/pipeline_reference/index.rst.txt +0 -0
  532. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/pipeline_step_version/index.rst.txt +0 -0
  533. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/pipeline_step_version_logs/index.rst.txt +0 -0
  534. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/pipeline_step_version_reference/index.rst.txt +0 -0
  535. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/pipeline_version/index.rst.txt +0 -0
  536. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/pipeline_version_logs/index.rst.txt +0 -0
  537. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/point_in_time_feature/index.rst.txt +0 -0
  538. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/point_in_time_group/index.rst.txt +0 -0
  539. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/point_in_time_group_feature/index.rst.txt +0 -0
  540. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/prediction_dataset/index.rst.txt +0 -0
  541. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/prediction_feature_group/index.rst.txt +0 -0
  542. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/prediction_input/index.rst.txt +0 -0
  543. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/prediction_metric/index.rst.txt +0 -0
  544. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/prediction_metric_version/index.rst.txt +0 -0
  545. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/pretrained_use_case/index.rst.txt +0 -0
  546. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/problem_type/index.rst.txt +0 -0
  547. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/project_config/index.rst.txt +0 -0
  548. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/project_dataset/index.rst.txt +0 -0
  549. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/project_validation/index.rst.txt +0 -0
  550. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/python_function/index.rst.txt +0 -0
  551. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/python_function_validator/index.rst.txt +0 -0
  552. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/python_plot_function/index.rst.txt +0 -0
  553. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/range_violation/index.rst.txt +0 -0
  554. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/refresh_pipeline_run/index.rst.txt +0 -0
  555. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/refresh_schedule/index.rst.txt +0 -0
  556. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/resolved_feature_group_template/index.rst.txt +0 -0
  557. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/return_class/index.rst.txt +0 -0
  558. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/streaming_auth_token/index.rst.txt +0 -0
  559. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/streaming_client/index.rst.txt +0 -0
  560. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/streaming_connector/index.rst.txt +0 -0
  561. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/test_point_predictions/index.rst.txt +0 -0
  562. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/training_config_options/index.rst.txt +0 -0
  563. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/type_violation/index.rst.txt +0 -0
  564. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/upload/index.rst.txt +0 -0
  565. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/upload_part/index.rst.txt +0 -0
  566. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/use_case/index.rst.txt +0 -0
  567. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/use_case_requirements/index.rst.txt +0 -0
  568. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/user/index.rst.txt +0 -0
  569. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/user_exception/index.rst.txt +0 -0
  570. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/vector_store/index.rst.txt +0 -0
  571. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/vector_store_config/index.rst.txt +0 -0
  572. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/vector_store_lookup_result/index.rst.txt +0 -0
  573. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/vector_store_version/index.rst.txt +0 -0
  574. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/autoapi/abacusai/webhook/index.rst.txt +0 -0
  575. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_sources/index.rst.txt +0 -0
  576. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/_sphinx_javascript_frameworks_compat.js +0 -0
  577. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/basic.css +0 -0
  578. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/badge_only.css +0 -0
  579. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/Roboto-Slab-Bold.woff +0 -0
  580. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
  581. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/Roboto-Slab-Regular.woff +0 -0
  582. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
  583. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/fontawesome-webfont.eot +0 -0
  584. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/fontawesome-webfont.svg +0 -0
  585. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/fontawesome-webfont.ttf +0 -0
  586. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/fontawesome-webfont.woff +0 -0
  587. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/fontawesome-webfont.woff2 +0 -0
  588. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/lato-bold-italic.woff +0 -0
  589. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/lato-bold-italic.woff2 +0 -0
  590. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/lato-bold.woff +0 -0
  591. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/lato-bold.woff2 +0 -0
  592. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/lato-normal-italic.woff +0 -0
  593. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/lato-normal-italic.woff2 +0 -0
  594. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/lato-normal.woff +0 -0
  595. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/fonts/lato-normal.woff2 +0 -0
  596. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/css/theme.css +0 -0
  597. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/doctools.js +0 -0
  598. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/documentation_options.js +0 -0
  599. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/file.png +0 -0
  600. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/graphviz.css +0 -0
  601. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/jquery-3.5.1.js +0 -0
  602. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/jquery-3.6.0.js +0 -0
  603. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/jquery.js +0 -0
  604. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/js/badge_only.js +0 -0
  605. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/js/html5shiv-printshiv.min.js +0 -0
  606. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/js/html5shiv.min.js +0 -0
  607. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/js/theme.js +0 -0
  608. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/language_data.js +0 -0
  609. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/minus.png +0 -0
  610. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/plus.png +0 -0
  611. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/pygments.css +0 -0
  612. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/searchtools.js +0 -0
  613. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/sphinx_highlight.js +0 -0
  614. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/underscore-1.13.1.js +0 -0
  615. {abacusai-0.75.0 → abacusai-0.75.6}/docs/_static/underscore.js +0 -0
  616. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_class/project/index.html +0 -0
  617. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_class/python_function_argument/index.html +0 -0
  618. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_class/python_functions/index.html +0 -0
  619. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/api_class/vector_store/index.html +0 -0
  620. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/chat_bot_response/index.html +0 -0
  621. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/data_filter/index.html +0 -0
  622. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/eda_leakage_detection/index.html +0 -0
  623. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/execute_fg_operation/index.html +0 -0
  624. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/feature_group_metrics/index.html +0 -0
  625. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/language_detection_prediction/index.html +0 -0
  626. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/leakage_duplication/index.html +0 -0
  627. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/llm_search_result/index.html +0 -0
  628. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/nlp_classification_prediction/index.html +0 -0
  629. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/nlp_sentiment_prediction/index.html +0 -0
  630. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/pretrained_use_case/index.html +0 -0
  631. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/project_dataset/index.html +0 -0
  632. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/vector_store/index.html +0 -0
  633. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/vector_store_config/index.html +0 -0
  634. {abacusai-0.75.0 → abacusai-0.75.6}/docs/autoapi/abacusai/vector_store_version/index.html +0 -0
  635. {abacusai-0.75.0 → abacusai-0.75.6}/docs/index.html +0 -0
  636. {abacusai-0.75.0 → abacusai-0.75.6}/docs/search.html +0 -0
  637. {abacusai-0.75.0 → abacusai-0.75.6}/examples/fullscript.py +0 -0
  638. {abacusai-0.75.0 → abacusai-0.75.6}/featurestore.md +0 -0
  639. {abacusai-0.75.0 → abacusai-0.75.6}/requirements.txt +0 -0
  640. {abacusai-0.75.0 → abacusai-0.75.6}/setup.cfg +0 -0
  641. {abacusai-0.75.0 → abacusai-0.75.6}/sphinx/build_docs +0 -0
  642. {abacusai-0.75.0 → abacusai-0.75.6}/sphinx/conf.py +0 -0
  643. {abacusai-0.75.0 → abacusai-0.75.6}/sphinx/index.rst +0 -0
@@ -1,12 +1,11 @@
1
- Metadata-Version: 1.1
1
+ Metadata-Version: 2.1
2
2
  Name: abacusai
3
- Version: 0.75.0
3
+ Version: 0.75.6
4
4
  Summary: Abacus.AI Python Client Library
5
5
  Home-page: https://github.com/abacusai/api-python
6
6
  Author: Abacus.AI
7
7
  Author-email: dev@abacus.ai
8
8
  License: MIT
9
- Description: UNKNOWN
10
9
  Platform: UNKNOWN
11
10
  Classifier: Development Status :: 5 - Production/Stable
12
11
  Classifier: Intended Audience :: Developers
@@ -14,3 +13,7 @@ Classifier: Topic :: Utilities
14
13
  Classifier: License :: OSI Approved :: MIT License
15
14
  Classifier: Programming Language :: Python :: 3
16
15
  Classifier: Programming Language :: Python :: 3.7
16
+ License-File: LICENSE
17
+
18
+ UNKNOWN
19
+
@@ -4,4 +4,4 @@ from .prediction_client import PredictionClient
4
4
  from .streaming_client import StreamingClient
5
5
 
6
6
 
7
- __version__ = "0.75.0"
7
+ __version__ = "0.75.6"
@@ -13,28 +13,32 @@ class Agent(AbstractApiClass):
13
13
  agentId (str): The unique identifier of the agent.
14
14
  createdAt (str): Date and time at which the agent was created.
15
15
  projectId (str): The project this agent belongs to.
16
+ notebookId (str): The notebook associated with the agent.
16
17
  predictFunctionName (str): Name of the function found in the source code that will be executed run predictions through agent. It is not executed when this function is run.
17
18
  sourceCode (str): Python code used to make the agent.
18
19
  agentConfig (dict): The config options used to create this agent.
20
+ memory (int): Memory in GB specified for the deployment resources for the agent.
19
21
  latestAgentVersion (AgentVersion): The latest agent version.
20
22
  codeSource (CodeSource): If a python model, information on the source code
21
23
  """
22
24
 
23
- def __init__(self, client, name=None, agentId=None, createdAt=None, projectId=None, predictFunctionName=None, sourceCode=None, agentConfig=None, codeSource={}, latestAgentVersion={}):
25
+ def __init__(self, client, name=None, agentId=None, createdAt=None, projectId=None, notebookId=None, predictFunctionName=None, sourceCode=None, agentConfig=None, memory=None, codeSource={}, latestAgentVersion={}):
24
26
  super().__init__(client, agentId)
25
27
  self.name = name
26
28
  self.agent_id = agentId
27
29
  self.created_at = createdAt
28
30
  self.project_id = projectId
31
+ self.notebook_id = notebookId
29
32
  self.predict_function_name = predictFunctionName
30
33
  self.source_code = sourceCode
31
34
  self.agent_config = agentConfig
35
+ self.memory = memory
32
36
  self.code_source = client._build_class(CodeSource, codeSource)
33
37
  self.latest_agent_version = client._build_class(
34
38
  AgentVersion, latestAgentVersion)
35
39
 
36
40
  def __repr__(self):
37
- return f"Agent(name={repr(self.name)},\n agent_id={repr(self.agent_id)},\n created_at={repr(self.created_at)},\n project_id={repr(self.project_id)},\n predict_function_name={repr(self.predict_function_name)},\n source_code={repr(self.source_code)},\n agent_config={repr(self.agent_config)},\n code_source={repr(self.code_source)},\n latest_agent_version={repr(self.latest_agent_version)})"
41
+ return f"Agent(name={repr(self.name)},\n agent_id={repr(self.agent_id)},\n created_at={repr(self.created_at)},\n project_id={repr(self.project_id)},\n notebook_id={repr(self.notebook_id)},\n predict_function_name={repr(self.predict_function_name)},\n source_code={repr(self.source_code)},\n agent_config={repr(self.agent_config)},\n memory={repr(self.memory)},\n code_source={repr(self.code_source)},\n latest_agent_version={repr(self.latest_agent_version)})"
38
42
 
39
43
  def to_dict(self):
40
44
  """
@@ -43,7 +47,7 @@ class Agent(AbstractApiClass):
43
47
  Returns:
44
48
  dict: The dict value representation of the class parameters
45
49
  """
46
- return {'name': self.name, 'agent_id': self.agent_id, 'created_at': self.created_at, 'project_id': self.project_id, 'predict_function_name': self.predict_function_name, 'source_code': self.source_code, 'agent_config': self.agent_config, 'code_source': self._get_attribute_as_dict(self.code_source), 'latest_agent_version': self._get_attribute_as_dict(self.latest_agent_version)}
50
+ return {'name': self.name, 'agent_id': self.agent_id, 'created_at': self.created_at, 'project_id': self.project_id, 'notebook_id': self.notebook_id, 'predict_function_name': self.predict_function_name, 'source_code': self.source_code, 'agent_config': self.agent_config, 'memory': self.memory, 'code_source': self._get_attribute_as_dict(self.code_source), 'latest_agent_version': self._get_attribute_as_dict(self.latest_agent_version)}
47
51
 
48
52
  def refresh(self):
49
53
  """
@@ -22,10 +22,11 @@ class Algorithm(AbstractApiClass):
22
22
  algorithmId (str): The unique identifier of the algorithm
23
23
  useGpu (bool): Whether to use gpu for model training
24
24
  algorithmTrainingConfig (dict): The algorithm specific training config
25
+ isRealtimeDeployable (bool): Whether or not the algorithm is allowed to be deployed in real time
25
26
  codeSource (CodeSource): Info about the source code of the algorithm
26
27
  """
27
28
 
28
- def __init__(self, client, name=None, problemType=None, createdAt=None, updatedAt=None, isDefaultEnabled=None, trainingInputMappings=None, trainFunctionName=None, predictFunctionName=None, predictManyFunctionName=None, initializeFunctionName=None, configOptions=None, algorithmId=None, useGpu=None, algorithmTrainingConfig=None, codeSource={}):
29
+ def __init__(self, client, name=None, problemType=None, createdAt=None, updatedAt=None, isDefaultEnabled=None, trainingInputMappings=None, trainFunctionName=None, predictFunctionName=None, predictManyFunctionName=None, initializeFunctionName=None, configOptions=None, algorithmId=None, useGpu=None, algorithmTrainingConfig=None, isRealtimeDeployable=None, codeSource={}):
29
30
  super().__init__(client, algorithmId)
30
31
  self.name = name
31
32
  self.problem_type = problemType
@@ -41,10 +42,11 @@ class Algorithm(AbstractApiClass):
41
42
  self.algorithm_id = algorithmId
42
43
  self.use_gpu = useGpu
43
44
  self.algorithm_training_config = algorithmTrainingConfig
45
+ self.is_realtime_deployable = isRealtimeDeployable
44
46
  self.code_source = client._build_class(CodeSource, codeSource)
45
47
 
46
48
  def __repr__(self):
47
- return f"Algorithm(name={repr(self.name)},\n problem_type={repr(self.problem_type)},\n created_at={repr(self.created_at)},\n updated_at={repr(self.updated_at)},\n is_default_enabled={repr(self.is_default_enabled)},\n training_input_mappings={repr(self.training_input_mappings)},\n train_function_name={repr(self.train_function_name)},\n predict_function_name={repr(self.predict_function_name)},\n predict_many_function_name={repr(self.predict_many_function_name)},\n initialize_function_name={repr(self.initialize_function_name)},\n config_options={repr(self.config_options)},\n algorithm_id={repr(self.algorithm_id)},\n use_gpu={repr(self.use_gpu)},\n algorithm_training_config={repr(self.algorithm_training_config)},\n code_source={repr(self.code_source)})"
49
+ return f"Algorithm(name={repr(self.name)},\n problem_type={repr(self.problem_type)},\n created_at={repr(self.created_at)},\n updated_at={repr(self.updated_at)},\n is_default_enabled={repr(self.is_default_enabled)},\n training_input_mappings={repr(self.training_input_mappings)},\n train_function_name={repr(self.train_function_name)},\n predict_function_name={repr(self.predict_function_name)},\n predict_many_function_name={repr(self.predict_many_function_name)},\n initialize_function_name={repr(self.initialize_function_name)},\n config_options={repr(self.config_options)},\n algorithm_id={repr(self.algorithm_id)},\n use_gpu={repr(self.use_gpu)},\n algorithm_training_config={repr(self.algorithm_training_config)},\n is_realtime_deployable={repr(self.is_realtime_deployable)},\n code_source={repr(self.code_source)})"
48
50
 
49
51
  def to_dict(self):
50
52
  """
@@ -53,4 +55,4 @@ class Algorithm(AbstractApiClass):
53
55
  Returns:
54
56
  dict: The dict value representation of the class parameters
55
57
  """
56
- return {'name': self.name, 'problem_type': self.problem_type, 'created_at': self.created_at, 'updated_at': self.updated_at, 'is_default_enabled': self.is_default_enabled, 'training_input_mappings': self.training_input_mappings, 'train_function_name': self.train_function_name, 'predict_function_name': self.predict_function_name, 'predict_many_function_name': self.predict_many_function_name, 'initialize_function_name': self.initialize_function_name, 'config_options': self.config_options, 'algorithm_id': self.algorithm_id, 'use_gpu': self.use_gpu, 'algorithm_training_config': self.algorithm_training_config, 'code_source': self._get_attribute_as_dict(self.code_source)}
58
+ return {'name': self.name, 'problem_type': self.problem_type, 'created_at': self.created_at, 'updated_at': self.updated_at, 'is_default_enabled': self.is_default_enabled, 'training_input_mappings': self.training_input_mappings, 'train_function_name': self.train_function_name, 'predict_function_name': self.predict_function_name, 'predict_many_function_name': self.predict_many_function_name, 'initialize_function_name': self.initialize_function_name, 'config_options': self.config_options, 'algorithm_id': self.algorithm_id, 'use_gpu': self.use_gpu, 'algorithm_training_config': self.algorithm_training_config, 'is_realtime_deployable': self.is_realtime_deployable, 'code_source': self._get_attribute_as_dict(self.code_source)}
@@ -0,0 +1,35 @@
1
+ from .return_class import AbstractApiClass
2
+
3
+
4
+ class AnnotationDocument(AbstractApiClass):
5
+ """
6
+ Document to be annotated.
7
+
8
+ Args:
9
+ client (ApiClient): An authenticated API Client instance
10
+ docId (str): The docstore Document ID of the document.
11
+ featureGroupRowIdentifier (str): The key value of the feature group row the annotation is on. Usually the primary key value.
12
+ featureGroupRowIndex (int): The index of the document row in the feature group.
13
+ totalRows (int): The total number of rows in the feature group.
14
+ isAnnotationPresent (bool): Whether the document already has an annotation. Returns None if feature group is not under annotations review mode.
15
+ """
16
+
17
+ def __init__(self, client, docId=None, featureGroupRowIdentifier=None, featureGroupRowIndex=None, totalRows=None, isAnnotationPresent=None):
18
+ super().__init__(client, None)
19
+ self.doc_id = docId
20
+ self.feature_group_row_identifier = featureGroupRowIdentifier
21
+ self.feature_group_row_index = featureGroupRowIndex
22
+ self.total_rows = totalRows
23
+ self.is_annotation_present = isAnnotationPresent
24
+
25
+ def __repr__(self):
26
+ return f"AnnotationDocument(doc_id={repr(self.doc_id)},\n feature_group_row_identifier={repr(self.feature_group_row_identifier)},\n feature_group_row_index={repr(self.feature_group_row_index)},\n total_rows={repr(self.total_rows)},\n is_annotation_present={repr(self.is_annotation_present)})"
27
+
28
+ def to_dict(self):
29
+ """
30
+ Get a dict representation of the parameters in this class
31
+
32
+ Returns:
33
+ dict: The dict value representation of the class parameters
34
+ """
35
+ return {'doc_id': self.doc_id, 'feature_group_row_identifier': self.feature_group_row_identifier, 'feature_group_row_index': self.feature_group_row_index, 'total_rows': self.total_rows, 'is_annotation_present': self.is_annotation_present}
@@ -1,10 +1,10 @@
1
1
  from .batch_prediction import *
2
2
  from .blob_input import *
3
3
  from .dataset import *
4
+ from .document_retriever import *
4
5
  from .enums import *
5
6
  from .feature_group import *
6
7
  from .model import *
7
8
  from .project import *
8
9
  from .python_functions import *
9
10
  from .refresh import *
10
- from .vector_store import *
@@ -41,6 +41,10 @@ class ApiClass(ABC):
41
41
  if inspect.isabstract(self):
42
42
  raise ValueError(f'Cannot instantiate abstract class {self.__class__.__name__}')
43
43
 
44
+ @classmethod
45
+ def _get_builder(cls):
46
+ return None
47
+
44
48
  def to_dict(self):
45
49
  """
46
50
  Standardizes converting an ApiClass to dictionary.
@@ -76,6 +80,8 @@ class ApiClass(ABC):
76
80
 
77
81
  @classmethod
78
82
  def from_dict(cls, input_dict: dict):
83
+ if builder := cls._get_builder():
84
+ return builder.from_dict(input_dict)
79
85
  if not cls._upper_snake_case_keys:
80
86
  input_dict = {snake_case(k): v for k, v in input_dict.items()}
81
87
  return cls(**input_dict)
@@ -115,5 +121,6 @@ class _ApiClassFactory(ABC):
115
121
  config_class = cls.config_abstract_class
116
122
  if config_class is None:
117
123
  raise ValueError(f'Invalid type {config_class_type}')
118
-
119
- return config_class.from_dict(config)
124
+ if not config_class._upper_snake_case_keys:
125
+ config = {snake_case(k): v for k, v in config.items()}
126
+ return config_class(**config)
@@ -10,6 +10,11 @@ class BatchPredictionArgs(ApiClass):
10
10
 
11
11
  kwargs: dict = dataclasses.field(default_factory=dict)
12
12
  problem_type: enums.ProblemType = dataclasses.field(default=None)
13
+ name: str = 'batch_prediction_args'
14
+
15
+ @classmethod
16
+ def _get_builder(cls):
17
+ return _BatchPredictionArgsFactory
13
18
 
14
19
 
15
20
  @dataclasses.dataclass
@@ -179,7 +184,7 @@ class ThemeAnalysisBatchPredictionArgs(BatchPredictionArgs):
179
184
  """
180
185
  Batch Prediction Config for the THEME_ANALYSIS problem type
181
186
  Args:
182
- for_eval(bool): If True, the test fold which was created during training and used for metrics calculation will be used as input data. These predictions are hence, used for model evaluation.
187
+ for_eval (bool): If True, the test fold which was created during training and used for metrics calculation will be used as input data. These predictions are hence, used for model evaluation.
183
188
  analysis_frequency (str): The length of each analysis interval.
184
189
  start_date (str): The end point for predictions.
185
190
  analysis_days (int): How many days to analyze.
@@ -193,6 +198,21 @@ class ThemeAnalysisBatchPredictionArgs(BatchPredictionArgs):
193
198
  self.problem_type = enums.ProblemType.THEME_ANALYSIS
194
199
 
195
200
 
201
+ @dataclasses.dataclass
202
+ class ChatLLMBatchPredictionArgs(BatchPredictionArgs):
203
+ """
204
+ Batch Prediction Config for the ChatLLM problem type
205
+ Args:
206
+ for_eval (bool): If True, the test fold which was created during training and used for metrics calculation will be used as input data. These predictions are hence, used for model evaluation.
207
+ product (bool): Generate a response for every question and chunk combination
208
+ """
209
+ for_eval: bool = dataclasses.field(default=None)
210
+ product: bool = None
211
+
212
+ def __post_init__(self):
213
+ self.problem_type = enums.ProblemType.CHAT_LLM
214
+
215
+
196
216
  @dataclasses.dataclass
197
217
  class _BatchPredictionArgsFactory(_ApiClassFactory):
198
218
  config_abstract_class = BatchPredictionArgs
@@ -207,4 +227,5 @@ class _BatchPredictionArgsFactory(_ApiClassFactory):
207
227
  enums.ProblemType.PRETRAINED_MODELS: PretrainedModelsBatchPredictionArgs,
208
228
  enums.ProblemType.SENTENCE_BOUNDARY_DETECTION: SentenceBoundaryDetectionBatchPredictionArgs,
209
229
  enums.ProblemType.THEME_ANALYSIS: ThemeAnalysisBatchPredictionArgs,
230
+ enums.ProblemType.CHAT_LLM: ChatLLMBatchPredictionArgs,
210
231
  }
@@ -10,6 +10,11 @@ class SamplingConfig(ApiClass):
10
10
  """
11
11
  An abstract class for the sampling config of a feature group
12
12
  """
13
+
14
+ @classmethod
15
+ def _get_builder(cls):
16
+ return _SamplingConfigFactory
17
+
13
18
  def __post_init__(self):
14
19
  if self.__class__ == SamplingConfig:
15
20
  raise TypeError('Cannot instantiate abstract SamplingConfig class.')
@@ -59,6 +64,11 @@ class MergeConfig(ApiClass):
59
64
  """
60
65
  An abstract class for the merge config of a feature group
61
66
  """
67
+
68
+ @classmethod
69
+ def _get_builder(self):
70
+ return _MergeConfigFactory
71
+
62
72
  def __post_init__(self):
63
73
  if self.__class__ == MergeConfig:
64
74
  raise TypeError('Cannot instantiate abstract MergeConfig class.')
@@ -14,6 +14,10 @@ class TrainingConfig(ApiClass):
14
14
  problem_type: enums.ProblemType = dataclasses.field(default=None, repr=False, init=False)
15
15
  algorithm: str = dataclasses.field(default=None)
16
16
 
17
+ @classmethod
18
+ def _get_builder(cls):
19
+ return _TrainingConfigFactory
20
+
17
21
 
18
22
  @dataclasses.dataclass
19
23
  class PersonalizationTrainingConfig(TrainingConfig):
@@ -123,7 +127,7 @@ class RegressionTrainingConfig(TrainingConfig):
123
127
  test_row_indicator (str): Column indicating which rows to use for training (TRAIN) and testing (TEST). Validation (VAL) can also be specified.
124
128
  rebalance_classes (bool): Class weights are computed as the inverse of the class frequency from the training dataset when this option is selected as "Yes". It is useful when the classes in the dataset are unbalanced.
125
129
  Re-balancing classes generally boosts recall at the cost of precision on rare classes.
126
- rare_class_augmentation_threshold (float): Augments any rare class whose relative frequency with respect to the most frequent class is less than this threshold. Default = 0.1
130
+ rare_class_augmentation_threshold (float): Augments any rare class whose relative frequency with respect to the most frequent class is less than this threshold. Default = 0.1 for classification problems with rare classes.
127
131
  augmentation_strategy (RegressionAugmentationStrategy): Strategy to deal with class imbalance and data augmentation.
128
132
  training_rows_downsample_ratio (float): Uses this ratio to train on a sample of the dataset provided.
129
133
  active_labels_column (str): Specify a column to use as the active columns in a multi label setting.
@@ -166,7 +170,7 @@ class RegressionTrainingConfig(TrainingConfig):
166
170
 
167
171
  # data augmentation
168
172
  rebalance_classes: bool = dataclasses.field(default=None)
169
- rare_class_augmentation_threshold: float = dataclasses.field(default=0.1)
173
+ rare_class_augmentation_threshold: float = dataclasses.field(default=None)
170
174
  augmentation_strategy: enums.RegressionAugmentationStrategy = dataclasses.field(default=None)
171
175
  training_rows_downsample_ratio: float = dataclasses.field(default=None)
172
176
 
@@ -626,8 +630,10 @@ class AIAgentTrainingConfig(TrainingConfig):
626
630
  Training config for the AI_AGENT problem type
627
631
  Args:
628
632
  description (str): Description of the agent function.
633
+ enable_binary_input (bool): If True, the agent will be able to accept binary data as inputs.
629
634
  """
630
635
  description: str = dataclasses.field(default=None)
636
+ enable_binary_input: bool = dataclasses.field(default=None)
631
637
 
632
638
  def __post_init__(self):
633
639
  self.problem_type = enums.ProblemType.AI_AGENT
@@ -684,7 +690,7 @@ class OptimizationTrainingConfig(TrainingConfig):
684
690
  """
685
691
  Training config for the OPTIMIZATION problem type
686
692
  Args:
687
- solve_time_limit (float): The maximum time in seconds to spend solving the problem. Accepts values between 0 and 14400.
693
+ solve_time_limit (float): The maximum time in seconds to spend solving the problem. Accepts values between 0 and 86400.
688
694
 
689
695
  """
690
696
  solve_time_limit: float = dataclasses.field(default=None)
@@ -9,6 +9,10 @@ from .abstract import ApiClass, _ApiClassFactory
9
9
  class FeatureGroupExportConfig(ApiClass):
10
10
  connector_type: enums.ConnectorType = dataclasses.field(default=None)
11
11
 
12
+ @classmethod
13
+ def _get_builder(cls):
14
+ return _FeatureGroupExportConfigFactory
15
+
12
16
 
13
17
  @dataclasses.dataclass
14
18
  class FileConnectorExportConfig(FeatureGroupExportConfig):
@@ -18,7 +18,6 @@ class BatchPrediction(AbstractApiClass):
18
18
  name (str): Name given to the batch prediction object.
19
19
  deploymentId (str): The deployment used to make the predictions.
20
20
  fileConnectorOutputLocation (str): Contains information about where the batch predictions are written to.
21
- globalPredictionArgs (dict): Argument(s) passed to every prediction call.
22
21
  databaseConnectorId (str): The database connector to write the results to.
23
22
  databaseOutputConfiguration (dict): Contains information about where the batch predictions are written to.
24
23
  explanations (bool): If true, explanations for each prediction will be created.
@@ -38,16 +37,16 @@ class BatchPrediction(AbstractApiClass):
38
37
  batchInputs (PredictionInput): Inputs to the batch prediction.
39
38
  latestBatchPredictionVersion (BatchPredictionVersion): The latest batch prediction version.
40
39
  refreshSchedules (RefreshSchedule): List of refresh schedules that dictate the next time the batch prediction will be run.
40
+ globalPredictionArgs (BatchPredictionArgs): Argument(s) passed to every prediction call.
41
41
  """
42
42
 
43
- def __init__(self, client, batchPredictionId=None, createdAt=None, name=None, deploymentId=None, fileConnectorOutputLocation=None, globalPredictionArgs=None, databaseConnectorId=None, databaseOutputConfiguration=None, explanations=None, fileOutputFormat=None, connectorType=None, legacyInputLocation=None, featureGroupTableName=None, summaryFeatureGroupTableName=None, csvInputPrefix=None, csvPredictionPrefix=None, csvExplanationsPrefix=None, outputIncludesMetadata=None, resultInputColumns=None, modelMonitorId=None, modelVersion=None, algorithm=None, batchInputs={}, latestBatchPredictionVersion={}, refreshSchedules={}):
43
+ def __init__(self, client, batchPredictionId=None, createdAt=None, name=None, deploymentId=None, fileConnectorOutputLocation=None, databaseConnectorId=None, databaseOutputConfiguration=None, explanations=None, fileOutputFormat=None, connectorType=None, legacyInputLocation=None, featureGroupTableName=None, summaryFeatureGroupTableName=None, csvInputPrefix=None, csvPredictionPrefix=None, csvExplanationsPrefix=None, outputIncludesMetadata=None, resultInputColumns=None, modelMonitorId=None, modelVersion=None, algorithm=None, batchInputs={}, latestBatchPredictionVersion={}, refreshSchedules={}, globalPredictionArgs={}):
44
44
  super().__init__(client, batchPredictionId)
45
45
  self.batch_prediction_id = batchPredictionId
46
46
  self.created_at = createdAt
47
47
  self.name = name
48
48
  self.deployment_id = deploymentId
49
49
  self.file_connector_output_location = fileConnectorOutputLocation
50
- self.global_prediction_args = globalPredictionArgs
51
50
  self.database_connector_id = databaseConnectorId
52
51
  self.database_output_configuration = databaseOutputConfiguration
53
52
  self.explanations = explanations
@@ -69,9 +68,11 @@ class BatchPrediction(AbstractApiClass):
69
68
  BatchPredictionVersion, latestBatchPredictionVersion)
70
69
  self.refresh_schedules = client._build_class(
71
70
  RefreshSchedule, refreshSchedules)
71
+ self.global_prediction_args = client._build_class(
72
+ BatchPredictionArgs, globalPredictionArgs)
72
73
 
73
74
  def __repr__(self):
74
- return f"BatchPrediction(batch_prediction_id={repr(self.batch_prediction_id)},\n created_at={repr(self.created_at)},\n name={repr(self.name)},\n deployment_id={repr(self.deployment_id)},\n file_connector_output_location={repr(self.file_connector_output_location)},\n global_prediction_args={repr(self.global_prediction_args)},\n database_connector_id={repr(self.database_connector_id)},\n database_output_configuration={repr(self.database_output_configuration)},\n explanations={repr(self.explanations)},\n file_output_format={repr(self.file_output_format)},\n connector_type={repr(self.connector_type)},\n legacy_input_location={repr(self.legacy_input_location)},\n feature_group_table_name={repr(self.feature_group_table_name)},\n summary_feature_group_table_name={repr(self.summary_feature_group_table_name)},\n csv_input_prefix={repr(self.csv_input_prefix)},\n csv_prediction_prefix={repr(self.csv_prediction_prefix)},\n csv_explanations_prefix={repr(self.csv_explanations_prefix)},\n output_includes_metadata={repr(self.output_includes_metadata)},\n result_input_columns={repr(self.result_input_columns)},\n model_monitor_id={repr(self.model_monitor_id)},\n model_version={repr(self.model_version)},\n algorithm={repr(self.algorithm)},\n batch_inputs={repr(self.batch_inputs)},\n latest_batch_prediction_version={repr(self.latest_batch_prediction_version)},\n refresh_schedules={repr(self.refresh_schedules)})"
75
+ return f"BatchPrediction(batch_prediction_id={repr(self.batch_prediction_id)},\n created_at={repr(self.created_at)},\n name={repr(self.name)},\n deployment_id={repr(self.deployment_id)},\n file_connector_output_location={repr(self.file_connector_output_location)},\n database_connector_id={repr(self.database_connector_id)},\n database_output_configuration={repr(self.database_output_configuration)},\n explanations={repr(self.explanations)},\n file_output_format={repr(self.file_output_format)},\n connector_type={repr(self.connector_type)},\n legacy_input_location={repr(self.legacy_input_location)},\n feature_group_table_name={repr(self.feature_group_table_name)},\n summary_feature_group_table_name={repr(self.summary_feature_group_table_name)},\n csv_input_prefix={repr(self.csv_input_prefix)},\n csv_prediction_prefix={repr(self.csv_prediction_prefix)},\n csv_explanations_prefix={repr(self.csv_explanations_prefix)},\n output_includes_metadata={repr(self.output_includes_metadata)},\n result_input_columns={repr(self.result_input_columns)},\n model_monitor_id={repr(self.model_monitor_id)},\n model_version={repr(self.model_version)},\n algorithm={repr(self.algorithm)},\n batch_inputs={repr(self.batch_inputs)},\n latest_batch_prediction_version={repr(self.latest_batch_prediction_version)},\n refresh_schedules={repr(self.refresh_schedules)},\n global_prediction_args={repr(self.global_prediction_args)})"
75
76
 
76
77
  def to_dict(self):
77
78
  """
@@ -80,7 +81,7 @@ class BatchPrediction(AbstractApiClass):
80
81
  Returns:
81
82
  dict: The dict value representation of the class parameters
82
83
  """
83
- return {'batch_prediction_id': self.batch_prediction_id, 'created_at': self.created_at, 'name': self.name, 'deployment_id': self.deployment_id, 'file_connector_output_location': self.file_connector_output_location, 'global_prediction_args': self.global_prediction_args, 'database_connector_id': self.database_connector_id, 'database_output_configuration': self.database_output_configuration, 'explanations': self.explanations, 'file_output_format': self.file_output_format, 'connector_type': self.connector_type, 'legacy_input_location': self.legacy_input_location, 'feature_group_table_name': self.feature_group_table_name, 'summary_feature_group_table_name': self.summary_feature_group_table_name, 'csv_input_prefix': self.csv_input_prefix, 'csv_prediction_prefix': self.csv_prediction_prefix, 'csv_explanations_prefix': self.csv_explanations_prefix, 'output_includes_metadata': self.output_includes_metadata, 'result_input_columns': self.result_input_columns, 'model_monitor_id': self.model_monitor_id, 'model_version': self.model_version, 'algorithm': self.algorithm, 'batch_inputs': self._get_attribute_as_dict(self.batch_inputs), 'latest_batch_prediction_version': self._get_attribute_as_dict(self.latest_batch_prediction_version), 'refresh_schedules': self._get_attribute_as_dict(self.refresh_schedules)}
84
+ return {'batch_prediction_id': self.batch_prediction_id, 'created_at': self.created_at, 'name': self.name, 'deployment_id': self.deployment_id, 'file_connector_output_location': self.file_connector_output_location, 'database_connector_id': self.database_connector_id, 'database_output_configuration': self.database_output_configuration, 'explanations': self.explanations, 'file_output_format': self.file_output_format, 'connector_type': self.connector_type, 'legacy_input_location': self.legacy_input_location, 'feature_group_table_name': self.feature_group_table_name, 'summary_feature_group_table_name': self.summary_feature_group_table_name, 'csv_input_prefix': self.csv_input_prefix, 'csv_prediction_prefix': self.csv_prediction_prefix, 'csv_explanations_prefix': self.csv_explanations_prefix, 'output_includes_metadata': self.output_includes_metadata, 'result_input_columns': self.result_input_columns, 'model_monitor_id': self.model_monitor_id, 'model_version': self.model_version, 'algorithm': self.algorithm, 'batch_inputs': self._get_attribute_as_dict(self.batch_inputs), 'latest_batch_prediction_version': self._get_attribute_as_dict(self.latest_batch_prediction_version), 'refresh_schedules': self._get_attribute_as_dict(self.refresh_schedules), 'global_prediction_args': self._get_attribute_as_dict(self.global_prediction_args)}
84
85
 
85
86
  def start(self):
86
87
  """
@@ -1,3 +1,4 @@
1
+ from .api_class import BatchPredictionArgs
1
2
  from .prediction_input import PredictionInput
2
3
  from .return_class import AbstractApiClass
3
4
 
@@ -17,7 +18,6 @@ class BatchPredictionVersion(AbstractApiClass):
17
18
  modelVersion (str): The model version used to make the predictions
18
19
  predictionsStartedAt (str): Predictions start date and time
19
20
  predictionsCompletedAt (str): Predictions completion date and time
20
- globalPredictionArgs (dict): Argument(s) passed to every prediction call
21
21
  databaseOutputError (bool): If true, there were errors reported by the database connector while writing
22
22
  totalPredictions (int): Number of predictions performed in this batch prediction job
23
23
  failedPredictions (int): Number of predictions that failed
@@ -42,9 +42,10 @@ class BatchPredictionVersion(AbstractApiClass):
42
42
  algoName (str): The name of the algorithm used to train the model
43
43
  algorithm (str): The algorithm that is currently deployed.
44
44
  batchInputs (PredictionInput): Inputs to the batch prediction
45
+ globalPredictionArgs (BatchPredictionArgs): Argument(s) passed to every prediction call
45
46
  """
46
47
 
47
- def __init__(self, client, batchPredictionVersion=None, batchPredictionId=None, status=None, driftMonitorStatus=None, deploymentId=None, modelId=None, modelVersion=None, predictionsStartedAt=None, predictionsCompletedAt=None, globalPredictionArgs=None, databaseOutputError=None, totalPredictions=None, failedPredictions=None, databaseConnectorId=None, databaseOutputConfiguration=None, explanations=None, fileConnectorOutputLocation=None, fileOutputFormat=None, connectorType=None, legacyInputLocation=None, error=None, driftMonitorError=None, monitorWarnings=None, csvInputPrefix=None, csvPredictionPrefix=None, csvExplanationsPrefix=None, databaseOutputTotalWrites=None, databaseOutputFailedWrites=None, outputIncludesMetadata=None, resultInputColumns=None, modelMonitorVersion=None, algoName=None, algorithm=None, batchInputs={}):
48
+ def __init__(self, client, batchPredictionVersion=None, batchPredictionId=None, status=None, driftMonitorStatus=None, deploymentId=None, modelId=None, modelVersion=None, predictionsStartedAt=None, predictionsCompletedAt=None, databaseOutputError=None, totalPredictions=None, failedPredictions=None, databaseConnectorId=None, databaseOutputConfiguration=None, explanations=None, fileConnectorOutputLocation=None, fileOutputFormat=None, connectorType=None, legacyInputLocation=None, error=None, driftMonitorError=None, monitorWarnings=None, csvInputPrefix=None, csvPredictionPrefix=None, csvExplanationsPrefix=None, databaseOutputTotalWrites=None, databaseOutputFailedWrites=None, outputIncludesMetadata=None, resultInputColumns=None, modelMonitorVersion=None, algoName=None, algorithm=None, batchInputs={}, globalPredictionArgs={}):
48
49
  super().__init__(client, batchPredictionVersion)
49
50
  self.batch_prediction_version = batchPredictionVersion
50
51
  self.batch_prediction_id = batchPredictionId
@@ -55,7 +56,6 @@ class BatchPredictionVersion(AbstractApiClass):
55
56
  self.model_version = modelVersion
56
57
  self.predictions_started_at = predictionsStartedAt
57
58
  self.predictions_completed_at = predictionsCompletedAt
58
- self.global_prediction_args = globalPredictionArgs
59
59
  self.database_output_error = databaseOutputError
60
60
  self.total_predictions = totalPredictions
61
61
  self.failed_predictions = failedPredictions
@@ -80,9 +80,11 @@ class BatchPredictionVersion(AbstractApiClass):
80
80
  self.algo_name = algoName
81
81
  self.algorithm = algorithm
82
82
  self.batch_inputs = client._build_class(PredictionInput, batchInputs)
83
+ self.global_prediction_args = client._build_class(
84
+ BatchPredictionArgs, globalPredictionArgs)
83
85
 
84
86
  def __repr__(self):
85
- return f"BatchPredictionVersion(batch_prediction_version={repr(self.batch_prediction_version)},\n batch_prediction_id={repr(self.batch_prediction_id)},\n status={repr(self.status)},\n drift_monitor_status={repr(self.drift_monitor_status)},\n deployment_id={repr(self.deployment_id)},\n model_id={repr(self.model_id)},\n model_version={repr(self.model_version)},\n predictions_started_at={repr(self.predictions_started_at)},\n predictions_completed_at={repr(self.predictions_completed_at)},\n global_prediction_args={repr(self.global_prediction_args)},\n database_output_error={repr(self.database_output_error)},\n total_predictions={repr(self.total_predictions)},\n failed_predictions={repr(self.failed_predictions)},\n database_connector_id={repr(self.database_connector_id)},\n database_output_configuration={repr(self.database_output_configuration)},\n explanations={repr(self.explanations)},\n file_connector_output_location={repr(self.file_connector_output_location)},\n file_output_format={repr(self.file_output_format)},\n connector_type={repr(self.connector_type)},\n legacy_input_location={repr(self.legacy_input_location)},\n error={repr(self.error)},\n drift_monitor_error={repr(self.drift_monitor_error)},\n monitor_warnings={repr(self.monitor_warnings)},\n csv_input_prefix={repr(self.csv_input_prefix)},\n csv_prediction_prefix={repr(self.csv_prediction_prefix)},\n csv_explanations_prefix={repr(self.csv_explanations_prefix)},\n database_output_total_writes={repr(self.database_output_total_writes)},\n database_output_failed_writes={repr(self.database_output_failed_writes)},\n output_includes_metadata={repr(self.output_includes_metadata)},\n result_input_columns={repr(self.result_input_columns)},\n model_monitor_version={repr(self.model_monitor_version)},\n algo_name={repr(self.algo_name)},\n algorithm={repr(self.algorithm)},\n batch_inputs={repr(self.batch_inputs)})"
87
+ return f"BatchPredictionVersion(batch_prediction_version={repr(self.batch_prediction_version)},\n batch_prediction_id={repr(self.batch_prediction_id)},\n status={repr(self.status)},\n drift_monitor_status={repr(self.drift_monitor_status)},\n deployment_id={repr(self.deployment_id)},\n model_id={repr(self.model_id)},\n model_version={repr(self.model_version)},\n predictions_started_at={repr(self.predictions_started_at)},\n predictions_completed_at={repr(self.predictions_completed_at)},\n database_output_error={repr(self.database_output_error)},\n total_predictions={repr(self.total_predictions)},\n failed_predictions={repr(self.failed_predictions)},\n database_connector_id={repr(self.database_connector_id)},\n database_output_configuration={repr(self.database_output_configuration)},\n explanations={repr(self.explanations)},\n file_connector_output_location={repr(self.file_connector_output_location)},\n file_output_format={repr(self.file_output_format)},\n connector_type={repr(self.connector_type)},\n legacy_input_location={repr(self.legacy_input_location)},\n error={repr(self.error)},\n drift_monitor_error={repr(self.drift_monitor_error)},\n monitor_warnings={repr(self.monitor_warnings)},\n csv_input_prefix={repr(self.csv_input_prefix)},\n csv_prediction_prefix={repr(self.csv_prediction_prefix)},\n csv_explanations_prefix={repr(self.csv_explanations_prefix)},\n database_output_total_writes={repr(self.database_output_total_writes)},\n database_output_failed_writes={repr(self.database_output_failed_writes)},\n output_includes_metadata={repr(self.output_includes_metadata)},\n result_input_columns={repr(self.result_input_columns)},\n model_monitor_version={repr(self.model_monitor_version)},\n algo_name={repr(self.algo_name)},\n algorithm={repr(self.algorithm)},\n batch_inputs={repr(self.batch_inputs)},\n global_prediction_args={repr(self.global_prediction_args)})"
86
88
 
87
89
  def to_dict(self):
88
90
  """
@@ -91,7 +93,7 @@ class BatchPredictionVersion(AbstractApiClass):
91
93
  Returns:
92
94
  dict: The dict value representation of the class parameters
93
95
  """
94
- return {'batch_prediction_version': self.batch_prediction_version, 'batch_prediction_id': self.batch_prediction_id, 'status': self.status, 'drift_monitor_status': self.drift_monitor_status, 'deployment_id': self.deployment_id, 'model_id': self.model_id, 'model_version': self.model_version, 'predictions_started_at': self.predictions_started_at, 'predictions_completed_at': self.predictions_completed_at, 'global_prediction_args': self.global_prediction_args, 'database_output_error': self.database_output_error, 'total_predictions': self.total_predictions, 'failed_predictions': self.failed_predictions, 'database_connector_id': self.database_connector_id, 'database_output_configuration': self.database_output_configuration, 'explanations': self.explanations, 'file_connector_output_location': self.file_connector_output_location, 'file_output_format': self.file_output_format, 'connector_type': self.connector_type, 'legacy_input_location': self.legacy_input_location, 'error': self.error, 'drift_monitor_error': self.drift_monitor_error, 'monitor_warnings': self.monitor_warnings, 'csv_input_prefix': self.csv_input_prefix, 'csv_prediction_prefix': self.csv_prediction_prefix, 'csv_explanations_prefix': self.csv_explanations_prefix, 'database_output_total_writes': self.database_output_total_writes, 'database_output_failed_writes': self.database_output_failed_writes, 'output_includes_metadata': self.output_includes_metadata, 'result_input_columns': self.result_input_columns, 'model_monitor_version': self.model_monitor_version, 'algo_name': self.algo_name, 'algorithm': self.algorithm, 'batch_inputs': self._get_attribute_as_dict(self.batch_inputs)}
96
+ return {'batch_prediction_version': self.batch_prediction_version, 'batch_prediction_id': self.batch_prediction_id, 'status': self.status, 'drift_monitor_status': self.drift_monitor_status, 'deployment_id': self.deployment_id, 'model_id': self.model_id, 'model_version': self.model_version, 'predictions_started_at': self.predictions_started_at, 'predictions_completed_at': self.predictions_completed_at, 'database_output_error': self.database_output_error, 'total_predictions': self.total_predictions, 'failed_predictions': self.failed_predictions, 'database_connector_id': self.database_connector_id, 'database_output_configuration': self.database_output_configuration, 'explanations': self.explanations, 'file_connector_output_location': self.file_connector_output_location, 'file_output_format': self.file_output_format, 'connector_type': self.connector_type, 'legacy_input_location': self.legacy_input_location, 'error': self.error, 'drift_monitor_error': self.drift_monitor_error, 'monitor_warnings': self.monitor_warnings, 'csv_input_prefix': self.csv_input_prefix, 'csv_prediction_prefix': self.csv_prediction_prefix, 'csv_explanations_prefix': self.csv_explanations_prefix, 'database_output_total_writes': self.database_output_total_writes, 'database_output_failed_writes': self.database_output_failed_writes, 'output_includes_metadata': self.output_includes_metadata, 'result_input_columns': self.result_input_columns, 'model_monitor_version': self.model_monitor_version, 'algo_name': self.algo_name, 'algorithm': self.algorithm, 'batch_inputs': self._get_attribute_as_dict(self.batch_inputs), 'global_prediction_args': self._get_attribute_as_dict(self.global_prediction_args)}
95
97
 
96
98
  def download_batch_prediction_result_chunk(self, offset: int = 0, chunk_size: int = 10485760):
97
99
  """