hana-ai 1.0.25121700__tar.gz → 1.0.26011600__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.
- {hana_ai-1.0.25121700/src/hana_ai.egg-info → hana_ai-1.0.26011600}/PKG-INFO +8 -13
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/pyproject.toml +1 -1
- hana_ai-1.0.26011600/requirements.txt +14 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/__init__.py +1 -1
- hana_ai-1.0.26011600/src/hana_ai/agents/hana_agent/agent_base.py +271 -0
- hana_ai-1.0.26011600/src/hana_ai/agents/hana_agent/data_agent.py +38 -0
- hana_ai-1.0.26011600/src/hana_ai/agents/hana_agent/discovery_agent.py +38 -0
- hana_ai-1.0.26011600/src/hana_ai/agents/hana_agent/progress_monitor.py +223 -0
- hana_ai-1.0.26011600/src/hana_ai/agents/hana_agent/utility.py +372 -0
- hana_ai-1.0.26011600/src/hana_ai/client/mcp_client.py +422 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/additive_model_forecast_tools.py +1 -1
- hana_ai-1.0.26011600/src/hana_ai/tools/hana_ml_tools/graph_tools.py +250 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/select_statement_to_table_tools.py +1 -1
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/ts_accuracy_measure_tools.py +2 -2
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/toolkit.py +248 -31
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/embedding_service.py +3 -2
- hana_ai-1.0.26011600/src/hana_ai/vectorstore/knowledge_base/__init__.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/pal_cross_encoder.py +0 -16
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600/src/hana_ai.egg-info}/PKG-INFO +8 -13
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai.egg-info/SOURCES.txt +8 -0
- hana_ai-1.0.26011600/src/hana_ai.egg-info/requires.txt +9 -0
- hana_ai-1.0.25121700/requirements.txt +0 -14
- hana_ai-1.0.25121700/src/hana_ai.egg-info/requires.txt +0 -14
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/CONTRIBUTING.md +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/INTRODUCTION.md +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/LICENSE +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/MANIFEST.in +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/README.md +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/setup.cfg +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/agents/__init__.py +0 -0
- {hana_ai-1.0.25121700/src/hana_ai/tools → hana_ai-1.0.26011600/src/hana_ai/agents/hana_agent}/__init__.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/agents/hana_dataframe_agent.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/agents/hana_dataframe_prompt.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/agents/hana_sql_agent.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/agents/hanaml_agent_with_memory.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/agents/hanaml_rag_agent.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/agents/utilities.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/smart_dataframe.py +0 -0
- {hana_ai-1.0.25121700/src/hana_ai/tools/df_tools → hana_ai-1.0.26011600/src/hana_ai/tools}/__init__.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/agent_as_a_tool.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/code_template_tools.py +0 -0
- {hana_ai-1.0.25121700/src/hana_ai/tools/hana_ml_tools → hana_ai-1.0.26011600/src/hana_ai/tools/df_tools}/__init__.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/df_tools/additive_model_forecast_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/df_tools/automatic_timeseries_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/df_tools/fetch_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/df_tools/intermittent_forecast_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/df_tools/ts_outlier_detection_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/df_tools/ts_visualizer_tools.py +0 -0
- {hana_ai-1.0.25121700/src/hana_ai/vectorstore → hana_ai-1.0.26011600/src/hana_ai/tools/hana_ml_tools}/__init__.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/automatic_timeseries_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/cap_artifacts_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/fetch_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/hdi_artifacts_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/intermittent_forecast_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/massive_automatic_timeseries_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/massive_ts_outlier_detection_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/model_storage_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/ts_check_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/ts_make_predict_table.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/ts_outlier_detection_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/ts_visualizer_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/unsupported_tools.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/tools/hana_ml_tools/utility.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/utility.py +0 -0
- {hana_ai-1.0.25121700/src/hana_ai/vectorstore/knowledge_base → hana_ai-1.0.26011600/src/hana_ai/vectorstore}/__init__.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/code_templates.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/corrective_retriever.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/hana_vector_engine.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/AMDPDeployer.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/AMDPGenerator.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/ARIMAExplainer.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/AdditiveModelForecastExplainer.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/AffinityPropagation.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/AgglomerateHierarchicalClustering.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Apriori.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/AprioriLite.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/AutomaticClassificationPredictionWithReason.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/AutomaticClassificationTraining.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/AutomaticRegressionPredictionWithReason.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/AutomaticRegressionTraining.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/BCPD.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/BSTSExplainer.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/BeeswarmPlot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/BestPipelineReport.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/BiVariateGeometricRegression.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/BiVariateNaturalLogarithmicRegression.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/BrownExponentialSmoothing.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/CATPCA.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/CPD.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/CRF.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/CommunitiesLouvain.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/CoxProportionalHazardModel.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Croston.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/CrostonTSB.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/DBSCAN.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/DWT.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/DatasetReport.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Discretize.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/DoubleExponentialSmoothing.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/EDAVisualizer.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Edge.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/ExponentialRegression.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/FFMClassifier.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/FFMRanker.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/FFMRegressor.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/FFT.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/FPGrowth.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/FairMLClassification.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/FairMLRegression.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/FeatureNormalizer.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/FeatureValueAndEffect.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Fernet.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/GARCH.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/GRUAttention.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/GaussianMixture.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/GeneralProgressStatusMonitor.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/GeometryDBSCAN.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/GradientBoostingClassifier.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/GradientBoostingRegressor.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/GridSearchCV.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/HANAGeneratorForCAP.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/HANAScheduler.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/HanaGenerator.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Hierarchical_Forecast.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/IdGenerator.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/InPort.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/KBinsDiscretizer.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/KDE.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/KMeansOutlier.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/KMedians.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/KMedoids.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/KNN.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/KORD.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/KShortestPaths.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/LR_seasonal_adjust.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/LSTM.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/LTSF.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/LinkPrediction.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/MDS.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/MLPRecommender.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/MetricReportBuilder.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/MetricsVisualizer.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Model.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/ModelStorage.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Neighbors.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/NeighborsSubgraph.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Node.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/OnlineARIMA.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/OnlineBCPD.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/OnlineLinearRegression.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/OutPort.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/OutlierProfiling.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/PCA.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Page.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/PageRank.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/PipelineProgressStatusMonitor.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/PolynomialRegression.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Preprocessing.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/QuantileTransform.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/RandomForestClassifier.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/RandomForestRegressor.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/RandomSearchCV.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/SMOTE.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/SMOTETomek.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/SOM.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/SPM.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Sampling.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Settings.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/ShapleyExplainer.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/ShortestPath.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/ShortestPathsOneToAll.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/SimplePipelineProgressStatusMonitor.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/SingleExponentialSmoothing.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/SlightSilhouette.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/SpectralClustering.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/StronglyConnectedComponents.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/TFIDF.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/TSNE.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/TimeSeriesExplainer.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/TimeSeriesReport.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/TomekLinks.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/TopologicalSort.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/TreeModelDebriefing.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/TripleExponentialSmoothing.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/UnifiedExponentialSmoothing.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/UnifiedReport.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/Visualizer.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/WeaklyConnectedComponents.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/WordCloud.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/abc_analysis.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/accuracy_measure.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/accuracy_score.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/auc.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/bar_plot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/benford_analysis.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/bernoulli.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/beta.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/binary_classification_debriefing.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/binomial.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/box_plot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/bubble_plot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/candlestick_plot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/cauchy.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/cdf.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/check_pal_function_exist.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/chi_squared.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/chi_squared_goodness_of_fit.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/chi_squared_independence.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/condition_index.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/confusion_matrix.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/connection_context.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/correlation.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/correlation_plot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/covariance_matrix.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/create_dataframe_from_pandas.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/create_dataframe_from_shapefile.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/create_dataframe_from_spark.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/create_graph_from_dataframes.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/create_graph_from_edges_dataframe.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/create_graph_from_hana_dataframes.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/dataframe_functions.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/delete_afl_state.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/delete_afl_state_by_description.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/discover_graph_workspace.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/discover_graph_workspaces.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/distribution_fit.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/distribution_plot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/dtw.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/entropy.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/exponential.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/export_into.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/f.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/f_oneway.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/f_oneway_repeated.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/factor_analysis.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/fast_dtw.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/forecast_line_plot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/ftest_equal_var.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/gamma.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/generate_feature.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/geometric.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/get_created_srses.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/get_floor_value.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/get_max_index.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/get_min_index.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/get_pipeline_info.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/get_related_doc.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/get_related_term.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/get_relevant_doc.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/get_relevant_term.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/get_suggested_term.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/get_tempdir_path.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/get_type_code_map.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/grubbs_test.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/gumbel.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/hist.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/hull_white_simulate.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/import_csv_from.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/import_from.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/intermittent_forecast.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/interval_quality.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/iqr.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/kaplan_meier_survival_analysis.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/kdeplot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/ks_test.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/list_afl_state.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/lognormal.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/m4_sampling.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/mae.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/massive_fft.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/mcmc.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/median_test_1samp.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/melt.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/minify.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/multiclass_auc.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/multinomial.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/negative_binomial.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/normal.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/notna.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/outlier_detection_kmeans.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/parallel_coordinates.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/pearsonr_matrix.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/periodogram.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/permutation_importance.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/pert.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/pie_plot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/plot_acf.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/plot_change_points.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/plot_moving_average.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/plot_pacf.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/plot_psd.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/plot_rolling_stddev.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/plot_seasonal_decompose.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/plot_time_series_outlier.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/poisson.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/quantile.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/quarter_plot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/quote.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/quotename.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/r2_score.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/read_pickle.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/regression_score.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/rmse.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/scatter_plot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/seasonal_decompose.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/seasonal_plot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/smart_quote.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/stationarity_test.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/student_t.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/text_classification.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/tf_analysis.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/timeseries_box_plot.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/train_test_val_split.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/trend_test.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/ttest_1samp.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/ttest_ind.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/ttest_paired.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/type_sql2cds.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/uniform.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/unify_min_max_value_of_yAxis.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/unique.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/univariate_analysis.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/update_display.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/variance_test.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/version_compare.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/wavedec.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/waverec.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/weibull.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/weighted_score_table.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/white_noise_test.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/wilcoxon.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/wpdec.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/wprec.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/python_knowledge/wraps.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/AutoML-checkpoint.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/AutoML.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/Multi-task-multilayer-perceptron.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/Optimization.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/abc-analysis-d92aa78.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/accelerated-k-means-5a3e282.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/additive-model-time-series-analysis-7e78d06.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/affinity-propagation-ec478f5.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/agglomerate-hierarchical-clustering-394a529.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/alternating-least-squares-7129de6.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/anomaly-detection-8c0e2a6.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/anova-e8a1d1b.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/application-function-library-afl-11abcbf.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/apriori-7a073d6.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/area-under-curve-auc-df08788.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/arima-dbd52a1.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/attention-d0743fb.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/auto-arima-9f2574e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/auto-exponential-smoothing-60471b0.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/automl-tutorial-9954eef.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/bayesian-change-point-detection-c6387a3.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/bayesian-structural-time-series-b997257.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/bi-variate-geometric-regression-71a9cee.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/bi-variate-natural-logarithmic-regression-57ced8a.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/biased-model-b663cf1.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/biased-model-f03d616.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/brown-exponential-smoothing-a5981d5.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/calling-pal-procedures-2c2a424.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/calling-pal-procedures-in-parallel-with-hint-parallel-by-parameter-partitions-ed5807b.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/calling-pal-procedures-in-parallel-with-map-reduce-5e462e1.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/calling-pal-procedures-in-parallel-with-operator-map-merge-7b7bbef.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/categorical-principal-component-analysis-ef445c7.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/change-point-detection-70ea3e2.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/chi-square-goodness-of-fit-test-af48bff.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/chi-squared-test-of-independence-90fbf5c.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/cluster-assignment-bb994fb.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/compatibility-264fbdc.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/compatibility-4849b44.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/compatibility-7a49959.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/condition-index-bf089cc.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/conditional-random-field-48ece2f.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/confusion-matrix-79c0d16.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/correlation-function-bb69320.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/cox-proportional-hazard-model-1492fd1.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/croston-s-method-c6721c3.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/croston-tsb-method-8203847.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/cumulative-distribution-function-3d24332.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/customized-seasonalities-6c30a24.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/data-partition-39da6b3.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/data-partition-4ca3a33.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/dbscan-b2c5511.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/decision-trees-c8ab80c.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/detect-outlier-from-residual-f5a6285.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/discrete-wavelet-packet-transform-2f5d75b.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/discrete-wavelet-transform-2ad85a5.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/discretize-612b76f.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/discretize-apply-82921db.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/distribution-fitting-d15e88a.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/distribution-quantile-6ae6985.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/double-exponential-smoothing-4665493.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/dynamic-time-warping-2b949ae.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/early-stop-of-hybrid-gradient-boosting-tree-daad5b4.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/entropy-35daf5c.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/equal-variance-test-a11d2bb.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/exception-handling-22f1c1b.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/explaining-the-forecasts-of-arima-bca2300.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/exponential-regression-011ebc9.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/factor-analysis-d0d962d.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/factorized-polynomial-regression-models-27e7242.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/fast-dynamic-time-warping-66e588e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/fast-fourier-transform-e9a3680.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/feature-grouping-for-hybrid-gradient-boosting-tree-c3767f6.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/feature-selection-29a47ef.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/field-aware-factorization-machine-2e30885.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/forecast-accuracy-measures-568723f.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/fp-growth-9495128.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/garch-f71f400.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/gaussian-mixture-model-gmm-3054f47.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/generalised-linear-models-1e4e0a6.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/geometry-dbscan-66fab6f.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/get-related-documents-7c0a97b.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/get-related-documents-multi.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/get-related-terms-0eebec7.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/get-related-terms-multi.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/get-relevant-documents-ea0b7cd.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/get-relevant-documents-multi.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/get-relevant-terms-bb2018a.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/get-relevant-terms-multi.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/get-suggested-terms-ceaf49e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/get-suggested-terms-multi.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/grubbs-test-32ccab0.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/hierarchical-forecast-384e8e7.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/histogram-splitting-method-for-hybrid-gradient-boosting-tree-7216cbe.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/hull-white.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/hybrid-gradient-boosting-tree-ca5106c.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/inter-quartile-range-3e322ad.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/intermittent-time-series-forecast-itsf-e0ac689.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/interval-quality-cf9e45d.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/isolation-forest-11345d9.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/k-means-53e6908.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/k-medians-91dc75c.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/k-medoids-0ba6f4b.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/k-optimal-rule-discovery-kord-598818b.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/kaplan-meier-survival-analysis-b1e7a3c.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/kernel-density-18d0510.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/kolmogorov-smirnov-test-1aab0c6.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/latent-dirichlet-allocation-866928f.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/linear-discriminant-analysis-a2b984a.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/linear-regression-with-damped-trend-and-seasonal-adjust-d5f360d.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/link-prediction-9f3dc84.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/local-interpretability-of-models-c330665.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/local-interpretability-of-models-cb71249.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/local-interpretability-of-models-e25b17e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/local-interpretability-of-models-e576c27.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/logistic-regression-with-elastic-net-regularization-46effe5.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/long-short-term-memory-3c2fc78.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/long-term-series-forecasting-060735d.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/mcmc-sampling-b492ef9.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/methods-to-get-residual-in-outlier-detection-eadb4d4.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/missing-value-handling-3b26f67.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/missing-value-handling-40aa336.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/missing-value-handling-41174ae.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/missing-value-handling-594ba55.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/model-compression-6b8be39.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/model-compression-825e28e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/model-compression-c77c002.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/model-compression-ea71174.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/model-compression-ee6b28e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/model-compression-fc7f18b.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/model-evaluation-0f7e441.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/model-evaluation-73bbec0.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/model-evaluation-7a36df4.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/model-evaluation-adf189b.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/model-evaluation-and-parameter-selection-602e54b.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/model-evaluation-and-parameter-selection-c7cf1f6.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/model-visualization-174c46c.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/multi-class-logistic-regression-bc5fe09.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/multidimensional-scaling-mds-75a1c5a.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/multilayer-perceptron-ddd236d.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/multiple-linear-regression-eedc909.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/multivariate-analysis-e872de9.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/naive-bayes-4fdc40e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/one-sample-median-test-c7e9654.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/online-arima-1027f8a.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/online-bayesian-change-point-detection-1398751.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/online-linear-regression-ffbfa5a.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/online-multi-class-logistic-regression-efe794e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/outlier-detection-17253b4.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/pagerank-27a10e6.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/parameter-tables-6c931c4.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/parameter-tables-94a8d3b.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/partition-af41e5f.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/periodogram-b9253c7.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/permutation-importance-e36d4e1.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/permutation-importance-ff18019.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/pipeline-de96493.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/pipeline-operator-fd58a3f.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/polynomial-regression-daf62ae.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/power-transform-3bc0528.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/precomputed-distance-matrix-as-input-data-49f9b46.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/precomputed-distance-matrix-as-input-data-c627694.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/prediction-intervals-and-confidence-intervals-d854b8c.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/prediction-intervals-and-confidence-intervals-f157449.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/principal-component-analysis-pca-dbf2eae.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/random-decision-trees-9ad576a.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/random-distribution-sampling-031e35e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/restricting-cpu-and-memory-usage-874883c.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/rocket-07c9a8c.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/sampling-282550b.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/scale-e3f29fa.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/scale-with-model-f8d480e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/scenario-analyze-the-cash-flow-of-an-investment-on-a-new-product-a2f8380.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/scenario-predict-segmentation-of-new-customers-for-a-supermarket-e1acc4e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/scenario-survival-analysis-51b366d.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/seasonality-test-d990dc7.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/self-organizing-maps-8e000f8.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/sequential-pattern-mining-860ec4a.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/single-exponential-smoothing-ba4bb85.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/slight-silhouette-bd6fa5c.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/smote-1bef6c3.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/smotetomek-343b849.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/spectral-clustering-d540a57.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/state-enabled-real-time-scoring-functions-b88b433.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/stationarity-test-1d85b07.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/successive-halving-and-hyperband-for-model-evaluation-and-parameter-selection-734113f.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/support-vector-machine-901a10d.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/switching-between-the-pal-algorithms-with-the-same-dataset-3879837.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/t-distributed-stochastic-neighbour-embedding-3de9095.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/t-test-431ffa3.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/term-analysis-0dd1876.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/text-classification-6425747.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/text-classification-predict.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/text-classification-train.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/tf-idf-calculation-ef2bad0.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/time-series-missing-value-handling-368f755.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/tomek-s-links-aad0816.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/trend-test-88f9cdd.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/triple-exponential-smoothing-a25b1de.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/tutorial-dataset-f9e32f5.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/unified-classification-8bd88cf.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/unified-classification-with-pivoted-input-data-5f37c0a.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/unified-clustering-6870a0c.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/unified-clustering-with-pivoted-input-data-baa7174.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/unified-exponential-smoothing-0d3683e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/unified-exponential-smoothing-with-pivoted-input-data-f54758e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/unified-regression-736b679.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/unified-regression-with-pivoted-input-data-3fdd715.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/univariate-analysis-a1fac59.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/variance-test-08cb673.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/varma-19e206e.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/weighted-score-table-a72289c.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/white-noise-test-9536698.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/knowledge_base/sql_knowledge/wilcox-signed-rank-test-e4d3416.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai/vectorstore/union_vector_stores.py +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai.egg-info/dependency_links.txt +0 -0
- {hana_ai-1.0.25121700 → hana_ai-1.0.26011600}/src/hana_ai.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hana_ai
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.26011600
|
|
4
4
|
Summary: Generative AI Toolkit for SAP HANA Cloud
|
|
5
5
|
Author: SAP
|
|
6
6
|
License: Apache-2.0
|
|
@@ -12,20 +12,15 @@ Keywords: Generative AI Toolkit SAP HANA Cloud
|
|
|
12
12
|
Requires-Python: >=3.0
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
-
Requires-Dist: langchain
|
|
15
|
+
Requires-Dist: langchain-community==0.3.27
|
|
16
|
+
Requires-Dist: langchain-experimental==0.3.3
|
|
17
|
+
Requires-Dist: langchain-text-splitters==0.3.9
|
|
16
18
|
Requires-Dist: numpy
|
|
17
19
|
Requires-Dist: pandas
|
|
18
|
-
Requires-Dist: hana-ml>=2.
|
|
19
|
-
Requires-Dist:
|
|
20
|
-
Requires-Dist:
|
|
21
|
-
Requires-Dist:
|
|
22
|
-
Requires-Dist: langchain-text-splitters
|
|
23
|
-
Requires-Dist: langchain-hana
|
|
24
|
-
Requires-Dist: pydantic
|
|
25
|
-
Requires-Dist: pydantic-core
|
|
26
|
-
Requires-Dist: cryptography
|
|
27
|
-
Requires-Dist: ipython
|
|
28
|
-
Requires-Dist: deprecated
|
|
20
|
+
Requires-Dist: hana-ml>=2.27.25122200
|
|
21
|
+
Requires-Dist: pydantic<2.13,>=2.11
|
|
22
|
+
Requires-Dist: sap-ai-sdk-gen[all]==5.10.0
|
|
23
|
+
Requires-Dist: fastmcp>=2.0
|
|
29
24
|
Dynamic: license-file
|
|
30
25
|
|
|
31
26
|
[](https://api.reuse.software/info/github.com/SAP/generative-ai-toolkit-for-sap-hana-cloud)
|
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
"""
|
|
2
|
+
hana_ml.agents.agent_base
|
|
3
|
+
"""
|
|
4
|
+
import json
|
|
5
|
+
import logging
|
|
6
|
+
import threading
|
|
7
|
+
import time
|
|
8
|
+
|
|
9
|
+
from hana_ml.ml_base import MLBase
|
|
10
|
+
from hana_ml.visualizers.shared import EmbeddedUI
|
|
11
|
+
|
|
12
|
+
from .progress_monitor import TextProgressMonitor
|
|
13
|
+
from .utility import _call_agent_sql, _create_ai_core_remote_source, _delete_ai_core_pse, _drop_ai_core_remote_source, _drop_certificate
|
|
14
|
+
|
|
15
|
+
logger = logging.getLogger(__name__)
|
|
16
|
+
|
|
17
|
+
class AgentBase(MLBase):
|
|
18
|
+
"""
|
|
19
|
+
Discovery Agent for interacting with AI Core services.
|
|
20
|
+
"""
|
|
21
|
+
def __init__(self, connection_context, agent_type):
|
|
22
|
+
"""
|
|
23
|
+
Initialize the AgentBase.
|
|
24
|
+
|
|
25
|
+
Parameters
|
|
26
|
+
----------
|
|
27
|
+
connection_context : ConnectionContext
|
|
28
|
+
The HANA connection context.
|
|
29
|
+
agent_type : {"DISCOVERY_AGENT_DEV", "DISCOVERY_AGENT", "DATA_AGENT_DEV", "DATA_AGENT"}
|
|
30
|
+
The type of agent to be used.
|
|
31
|
+
"""
|
|
32
|
+
super().__init__(connection_context)
|
|
33
|
+
self.conn_context = connection_context
|
|
34
|
+
self.remote_source_name = "HANA_DISCOVERY_AGENT_CREDENTIALS"
|
|
35
|
+
self.pse_name = "AI_CORE_PSE"
|
|
36
|
+
if agent_type not in {"DISCOVERY_AGENT_DEV", "DISCOVERY_AGENT", "DATA_AGENT_DEV", "DATA_AGENT"}:
|
|
37
|
+
raise ValueError("Invalid agent_type. Must be one of 'DISCOVERY_AGENT_DEV', 'DISCOVERY_AGENT', 'DATA_AGENT_DEV', 'DATA_AGENT'.")
|
|
38
|
+
self.agent_type = agent_type
|
|
39
|
+
|
|
40
|
+
def drop_remote_source(self, remote_source_name: str, cascade: bool = True):
|
|
41
|
+
"""
|
|
42
|
+
Drop the remote source for AI Core.
|
|
43
|
+
|
|
44
|
+
Parameters
|
|
45
|
+
----------
|
|
46
|
+
remote_source_name : str, optional
|
|
47
|
+
The name of the remote source to be dropped. Default is "AI_CORE_REMOTE_SOURCE".
|
|
48
|
+
cascade : bool, optional
|
|
49
|
+
Whether to drop dependent objects as well. Default is True.
|
|
50
|
+
"""
|
|
51
|
+
try:
|
|
52
|
+
_drop_ai_core_remote_source(
|
|
53
|
+
connection_context=self.conn_context,
|
|
54
|
+
remote_source_name=remote_source_name,
|
|
55
|
+
cascade=cascade
|
|
56
|
+
)
|
|
57
|
+
except Exception as exc:
|
|
58
|
+
logger.warning("Failed to drop remote source %s: %s", remote_source_name, str(exc))
|
|
59
|
+
|
|
60
|
+
def drop_pse(self, pse_name: str, cascade: bool = True):
|
|
61
|
+
"""
|
|
62
|
+
Drop the PSE for AI Core.
|
|
63
|
+
|
|
64
|
+
Parameters
|
|
65
|
+
----------
|
|
66
|
+
pse_name : str, optional
|
|
67
|
+
The name of the PSE to be dropped. Default is "AI_CORE_PSE".
|
|
68
|
+
cascade : bool, optional
|
|
69
|
+
Whether to drop dependent objects as well. Default is True.
|
|
70
|
+
"""
|
|
71
|
+
try:
|
|
72
|
+
_delete_ai_core_pse(
|
|
73
|
+
connection_context=self.conn_context,
|
|
74
|
+
pse_name=pse_name,
|
|
75
|
+
cascade=cascade
|
|
76
|
+
)
|
|
77
|
+
except Exception as exc:
|
|
78
|
+
logger.warning("Failed to drop PSE %s: %s", pse_name, str(exc))
|
|
79
|
+
|
|
80
|
+
def drop_certificates(self):
|
|
81
|
+
"""
|
|
82
|
+
Drop the certificate X1ROOT and DIGICERTG5.
|
|
83
|
+
"""
|
|
84
|
+
try:
|
|
85
|
+
_drop_certificate(
|
|
86
|
+
connection_context=self.conn_context,
|
|
87
|
+
certificate_name="X1ROOT"
|
|
88
|
+
)
|
|
89
|
+
except Exception as exc:
|
|
90
|
+
logger.warning("Failed to drop certificate X1ROOT: %s", str(exc))
|
|
91
|
+
try:
|
|
92
|
+
_drop_certificate(
|
|
93
|
+
connection_context=self.conn_context,
|
|
94
|
+
certificate_name="DIGICERTG5"
|
|
95
|
+
)
|
|
96
|
+
except Exception as exc:
|
|
97
|
+
logger.warning("Failed to drop certificate DIGICERTG5: %s", str(exc))
|
|
98
|
+
|
|
99
|
+
def create_remote_source(self, credentials, pse_name: str = "AI_CORE_PSE", remote_source_name: str = "HANA_DISCOVERY_AGENT_CREDENTIALS", create_pse: bool = True):
|
|
100
|
+
"""
|
|
101
|
+
Configure the Discovery/Data Agent by creating necessary PSE and remote source.
|
|
102
|
+
|
|
103
|
+
Parameters
|
|
104
|
+
----------
|
|
105
|
+
credentials : dict or str
|
|
106
|
+
The credentials for AI Core service. If str, it should be a credentials filepath in JSON format.
|
|
107
|
+
pse_name : str, optional
|
|
108
|
+
The name of the PSE to be created. Default is "AI_CORE_PSE".
|
|
109
|
+
remote_source_name : str, optional
|
|
110
|
+
The name of the remote source to be created. Default is "HANA_DISCOVERY_AGENT_CREDENTIALS".
|
|
111
|
+
create_pse : bool, optional
|
|
112
|
+
Whether to create the PSE. Default is True.
|
|
113
|
+
|
|
114
|
+
Remarks
|
|
115
|
+
-------
|
|
116
|
+
The X1ROOT and DIGICERTG5 certificates will be created if they do not already exist. One can provide the enviroment variables DIGICERTG5_PATH and X1ROOT_PATH to specify the certificate file paths, otherwise the default certificate files will be used.
|
|
117
|
+
"""
|
|
118
|
+
if isinstance(credentials, str):
|
|
119
|
+
with open(credentials, 'r') as file:
|
|
120
|
+
credentials = json.load(file)
|
|
121
|
+
_create_ai_core_remote_source(
|
|
122
|
+
connection_context=self.conn_context,
|
|
123
|
+
credentials=credentials,
|
|
124
|
+
pse_name=pse_name,
|
|
125
|
+
remote_source_name=remote_source_name,
|
|
126
|
+
create_pse=create_pse
|
|
127
|
+
)
|
|
128
|
+
self.remote_source_name = remote_source_name
|
|
129
|
+
self.pse_name = pse_name
|
|
130
|
+
|
|
131
|
+
def check_remote_source_detailed(self, remote_source_name):
|
|
132
|
+
"""
|
|
133
|
+
Check if the remote source exists and retrieve detailed information.
|
|
134
|
+
"""
|
|
135
|
+
try:
|
|
136
|
+
cursor = self.conn_context.connection.cursor()
|
|
137
|
+
|
|
138
|
+
# Query more detailed information
|
|
139
|
+
sql = """
|
|
140
|
+
SELECT *
|
|
141
|
+
FROM SYS.REMOTE_SOURCES
|
|
142
|
+
WHERE REMOTE_SOURCE_NAME = ?
|
|
143
|
+
"""
|
|
144
|
+
cursor.execute(sql, (remote_source_name,))
|
|
145
|
+
result = cursor.fetchone()
|
|
146
|
+
|
|
147
|
+
if result:
|
|
148
|
+
return {
|
|
149
|
+
'exists': True,
|
|
150
|
+
'details': {
|
|
151
|
+
'remote_source_name': result[0],
|
|
152
|
+
'adapter_name': result[1],
|
|
153
|
+
'connection_info': result[2],
|
|
154
|
+
'created': result[3],
|
|
155
|
+
'owner': result[4]
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
else:
|
|
159
|
+
return {'exists': False, 'details': None}
|
|
160
|
+
|
|
161
|
+
except Exception as exc:
|
|
162
|
+
return {'exists': False, 'error': str(exc)}
|
|
163
|
+
|
|
164
|
+
def run(self, query: str, additional_config: dict = None, show_progress: bool = True):
|
|
165
|
+
"""
|
|
166
|
+
Run a query using the Discovery/Data Agent.
|
|
167
|
+
|
|
168
|
+
Parameters
|
|
169
|
+
----------
|
|
170
|
+
query : str
|
|
171
|
+
The query string to be executed.
|
|
172
|
+
|
|
173
|
+
additional_config : dict, optional
|
|
174
|
+
Additional configuration parameters for the Discovery/Data Agent.
|
|
175
|
+
Returns
|
|
176
|
+
-------
|
|
177
|
+
result : DataFrame
|
|
178
|
+
The result of the query execution.
|
|
179
|
+
"""
|
|
180
|
+
config = {
|
|
181
|
+
"remoteSourceName": self.remote_source_name
|
|
182
|
+
}
|
|
183
|
+
if additional_config:
|
|
184
|
+
config.update(additional_config)
|
|
185
|
+
|
|
186
|
+
sql_query = _call_agent_sql(
|
|
187
|
+
query=query,
|
|
188
|
+
config=config,
|
|
189
|
+
agent_type=self.agent_type
|
|
190
|
+
)
|
|
191
|
+
|
|
192
|
+
logger.info("Executing Discovery Agent SQL: %s", sql_query)
|
|
193
|
+
|
|
194
|
+
# Get current connection ID
|
|
195
|
+
connection_id = int(self.conn_context.get_connection_id())
|
|
196
|
+
|
|
197
|
+
# Used to store result
|
|
198
|
+
result = None
|
|
199
|
+
execution_error = None
|
|
200
|
+
execution_completed = threading.Event()
|
|
201
|
+
|
|
202
|
+
def execute_query():
|
|
203
|
+
nonlocal result, execution_error
|
|
204
|
+
try:
|
|
205
|
+
with self.conn_context.connection.cursor() as cursor:
|
|
206
|
+
cursor.execute(sql_query)
|
|
207
|
+
logger.info("SQL executed successfully.")
|
|
208
|
+
logger.info("Fetching result...")
|
|
209
|
+
query_result = cursor.fetchone()
|
|
210
|
+
result = query_result[0] if query_result else None
|
|
211
|
+
logger.info("Result fetched successfully.")
|
|
212
|
+
except Exception as exc:
|
|
213
|
+
execution_error = exc
|
|
214
|
+
logger.error("Error executing query: %s", exc)
|
|
215
|
+
finally:
|
|
216
|
+
execution_completed.set()
|
|
217
|
+
|
|
218
|
+
if show_progress:
|
|
219
|
+
# Create progress monitor
|
|
220
|
+
monitor = TextProgressMonitor(
|
|
221
|
+
connection=EmbeddedUI.create_connection_context(self.conn_context).connection,
|
|
222
|
+
connection_id=connection_id,
|
|
223
|
+
show_progress=show_progress
|
|
224
|
+
)
|
|
225
|
+
|
|
226
|
+
# Start progress monitoring
|
|
227
|
+
monitor.start()
|
|
228
|
+
|
|
229
|
+
try:
|
|
230
|
+
# Start query thread
|
|
231
|
+
query_thread = threading.Thread(target=execute_query)
|
|
232
|
+
query_thread.daemon = True
|
|
233
|
+
query_thread.start()
|
|
234
|
+
|
|
235
|
+
# Poll progress until query completes
|
|
236
|
+
while not execution_completed.is_set():
|
|
237
|
+
monitor.update()
|
|
238
|
+
time.sleep(monitor.refresh_interval)
|
|
239
|
+
|
|
240
|
+
# Wait for query thread to finish
|
|
241
|
+
query_thread.join(timeout=5)
|
|
242
|
+
|
|
243
|
+
# Query completed
|
|
244
|
+
if execution_error:
|
|
245
|
+
monitor.complete(success=False, final_message="Query failed: %s" % str(execution_error)[:100])
|
|
246
|
+
else:
|
|
247
|
+
monitor.complete(success=True, final_message="Query completed successfully.")
|
|
248
|
+
|
|
249
|
+
except KeyboardInterrupt:
|
|
250
|
+
# User interruption
|
|
251
|
+
logger.warning("Query execution interrupted by user")
|
|
252
|
+
monitor.complete(success=False, final_message="interrupted by user")
|
|
253
|
+
raise
|
|
254
|
+
|
|
255
|
+
except Exception as exc:
|
|
256
|
+
# Other exceptions
|
|
257
|
+
monitor.complete(success=False, final_message="Error: %s" % str(exc)[:100])
|
|
258
|
+
raise
|
|
259
|
+
|
|
260
|
+
finally:
|
|
261
|
+
# Ensure monitor stops
|
|
262
|
+
monitor.stop()
|
|
263
|
+
|
|
264
|
+
# Store monitor for later progress history
|
|
265
|
+
self._progress_monitor = monitor
|
|
266
|
+
|
|
267
|
+
else:
|
|
268
|
+
# No progress display
|
|
269
|
+
execute_query()
|
|
270
|
+
|
|
271
|
+
return result
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"""
|
|
2
|
+
hana_ml.agents.data_agent
|
|
3
|
+
|
|
4
|
+
The following classes are available:
|
|
5
|
+
|
|
6
|
+
* :class:`DataAgent`
|
|
7
|
+
"""
|
|
8
|
+
import logging
|
|
9
|
+
|
|
10
|
+
from .agent_base import AgentBase
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
logger = logging.getLogger(__name__)
|
|
14
|
+
|
|
15
|
+
class DataAgent(AgentBase):
|
|
16
|
+
"""
|
|
17
|
+
Data Agent for interacting with AI Core services.
|
|
18
|
+
|
|
19
|
+
The user has the below privileges to create/drop remote source and PSE as well as call the Data Agent SQL:
|
|
20
|
+
|
|
21
|
+
- EXECUTE privilege on the DATA_AGENT_DEV or DATA_AGENT stored procedure.
|
|
22
|
+
- CREATE REMOTE SOURCE privilege.
|
|
23
|
+
- TRUST ADMIN privilege.
|
|
24
|
+
- CERTIFICATE ADMIN privilege.
|
|
25
|
+
"""
|
|
26
|
+
def __init__(self, connection_context, agent_type="DATA_AGENT_DEV"):
|
|
27
|
+
"""
|
|
28
|
+
Initialize the DataAgent.
|
|
29
|
+
|
|
30
|
+
Parameters
|
|
31
|
+
----------
|
|
32
|
+
connection_context : ConnectionContext
|
|
33
|
+
The HANA connection context.
|
|
34
|
+
"""
|
|
35
|
+
super().__init__(connection_context, agent_type=agent_type)
|
|
36
|
+
self.conn_context = connection_context
|
|
37
|
+
self.remote_source_name = "HANA_DISCOVERY_AGENT_CREDENTIALS"
|
|
38
|
+
self.pse_name = "AI_CORE_PSE"
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"""
|
|
2
|
+
hana_ml.agents.discovery_agent
|
|
3
|
+
|
|
4
|
+
The following classes are available:
|
|
5
|
+
* :class:`DiscoveryAgent`
|
|
6
|
+
"""
|
|
7
|
+
import logging
|
|
8
|
+
|
|
9
|
+
from .agent_base import AgentBase
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
logger = logging.getLogger(__name__)
|
|
13
|
+
|
|
14
|
+
class DiscoveryAgent(AgentBase):
|
|
15
|
+
"""
|
|
16
|
+
Discovery Agent for interacting with AI Core services.
|
|
17
|
+
|
|
18
|
+
The user has the below privileges to create/drop remote source and PSE as well as call the Discovery Agent SQL:
|
|
19
|
+
|
|
20
|
+
- EXECUTE privilege on the DISCOVERY_AGENT_DEV or DISCOVERY_AGENT stored procedure.
|
|
21
|
+
- CREATE REMOTE SOURCE privilege.
|
|
22
|
+
- TRUST ADMIN privilege.
|
|
23
|
+
- CERTIFICATE ADMIN privilege.
|
|
24
|
+
|
|
25
|
+
"""
|
|
26
|
+
def __init__(self, connection_context, agent_type="DISCOVERY_AGENT_DEV"):
|
|
27
|
+
"""
|
|
28
|
+
Initialize the DiscoveryAgent.
|
|
29
|
+
|
|
30
|
+
Parameters
|
|
31
|
+
----------
|
|
32
|
+
connection_context : ConnectionContext
|
|
33
|
+
The HANA connection context.
|
|
34
|
+
"""
|
|
35
|
+
super().__init__(connection_context, agent_type=agent_type)
|
|
36
|
+
self.conn_context = connection_context
|
|
37
|
+
self.remote_source_name = "HANA_DISCOVERY_AGENT_CREDENTIALS"
|
|
38
|
+
self.pse_name = "AI_CORE_PSE"
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
|
|
2
|
+
"""
|
|
3
|
+
Text progress monitor for agent progress display.
|
|
4
|
+
"""
|
|
5
|
+
import time
|
|
6
|
+
from datetime import datetime
|
|
7
|
+
from typing import List, Dict, Optional, Callable
|
|
8
|
+
from tqdm import tqdm
|
|
9
|
+
|
|
10
|
+
# pylint: disable=too-many-instance-attributes
|
|
11
|
+
|
|
12
|
+
class TextProgressMonitor:
|
|
13
|
+
"""Text progress monitor, suitable for scenarios with only textual description and no percentage."""
|
|
14
|
+
|
|
15
|
+
def __init__(self,
|
|
16
|
+
connection,
|
|
17
|
+
connection_id: int,
|
|
18
|
+
refresh_interval: float = 1.0,
|
|
19
|
+
show_progress: bool = True):
|
|
20
|
+
"""
|
|
21
|
+
Initialize the text progress monitor.
|
|
22
|
+
|
|
23
|
+
Parameters
|
|
24
|
+
----------
|
|
25
|
+
connection : database connection object
|
|
26
|
+
The database connection used to query progress information.
|
|
27
|
+
connection_id : int
|
|
28
|
+
The current connection ID, used to query corresponding progress information.
|
|
29
|
+
refresh_interval : float, optional
|
|
30
|
+
Progress query interval (seconds), default is 1.0 second.
|
|
31
|
+
show_progress : bool, optional
|
|
32
|
+
Whether to display progress, default is True.
|
|
33
|
+
"""
|
|
34
|
+
self.connection = connection
|
|
35
|
+
self.connection_id = connection_id
|
|
36
|
+
self.refresh_interval = refresh_interval
|
|
37
|
+
self.show_progress = show_progress
|
|
38
|
+
# Progress related
|
|
39
|
+
self.progress_messages: List[Dict[str, str]] = []
|
|
40
|
+
self.last_message = ""
|
|
41
|
+
self.last_displayed_message = ""
|
|
42
|
+
# Monitor state
|
|
43
|
+
self.is_monitoring = False
|
|
44
|
+
self.completed = False
|
|
45
|
+
# Progress callbacks
|
|
46
|
+
self.on_progress_update: Optional[Callable[[str], None]] = None
|
|
47
|
+
self.on_complete: Optional[Callable[[bool], None]] = None
|
|
48
|
+
# tqdm progress bar
|
|
49
|
+
self.progress_bar = None
|
|
50
|
+
self.message_count = 0
|
|
51
|
+
|
|
52
|
+
def start(self) -> 'TextProgressMonitor':
|
|
53
|
+
"""Start progress monitoring."""
|
|
54
|
+
if self.show_progress:
|
|
55
|
+
# Use custom format, only show elapsed time and message
|
|
56
|
+
self.progress_bar = tqdm(
|
|
57
|
+
total=None, # No definite total progress
|
|
58
|
+
bar_format="{n}[{elapsed}{postfix}]", # Show elapsed time and description
|
|
59
|
+
dynamic_ncols=True,
|
|
60
|
+
leave=True
|
|
61
|
+
)
|
|
62
|
+
# Set initial description
|
|
63
|
+
self.progress_bar.set_postfix_str("Starting...")
|
|
64
|
+
self.is_monitoring = True
|
|
65
|
+
self.completed = False
|
|
66
|
+
self.start_time = datetime.now()
|
|
67
|
+
self.message_count = 0
|
|
68
|
+
return self
|
|
69
|
+
|
|
70
|
+
def update(self) -> Optional[str]:
|
|
71
|
+
"""
|
|
72
|
+
Update progress information.
|
|
73
|
+
|
|
74
|
+
Returns
|
|
75
|
+
-------
|
|
76
|
+
str or None
|
|
77
|
+
Returns the latest progress message, or None if there is no new message.
|
|
78
|
+
"""
|
|
79
|
+
if not self.is_monitoring or self.completed:
|
|
80
|
+
return None
|
|
81
|
+
try:
|
|
82
|
+
# Only query PROGRESS_DETAIL field
|
|
83
|
+
progress_sql = f"""
|
|
84
|
+
SELECT PROGRESS_DETAIL, CURRENT_PROGRESS
|
|
85
|
+
FROM M_JOB_PROGRESS
|
|
86
|
+
WHERE CONNECTION_ID = {self.connection_id}
|
|
87
|
+
ORDER BY START_TIME DESC
|
|
88
|
+
LIMIT 1
|
|
89
|
+
"""
|
|
90
|
+
with self.connection.cursor() as cursor:
|
|
91
|
+
cursor.execute(progress_sql)
|
|
92
|
+
result = cursor.fetchone()
|
|
93
|
+
if result and result[0]:
|
|
94
|
+
current_message = result[0]
|
|
95
|
+
current_progress = result[1]
|
|
96
|
+
# If there is a new message
|
|
97
|
+
if current_message and current_message != self.last_message:
|
|
98
|
+
self.last_message = current_message
|
|
99
|
+
self.message_count += 1
|
|
100
|
+
|
|
101
|
+
# Use local time as timestamp
|
|
102
|
+
timestamp = datetime.now().strftime("%H:%M:%S")
|
|
103
|
+
|
|
104
|
+
self.progress_messages.append({
|
|
105
|
+
'timestamp': timestamp,
|
|
106
|
+
'message': current_message
|
|
107
|
+
})
|
|
108
|
+
|
|
109
|
+
# Use tqdm to display progress
|
|
110
|
+
if self.show_progress and current_message != self.last_displayed_message:
|
|
111
|
+
if self.progress_bar is not None:
|
|
112
|
+
# Directly set description, bar_format will show elapsed time
|
|
113
|
+
self.progress_bar.set_postfix_str(current_message)
|
|
114
|
+
self.progress_bar.n = current_progress
|
|
115
|
+
self.progress_bar.refresh()
|
|
116
|
+
self.last_displayed_message = current_message
|
|
117
|
+
|
|
118
|
+
# Call progress callback function
|
|
119
|
+
if self.on_progress_update:
|
|
120
|
+
self.on_progress_update(current_message)
|
|
121
|
+
|
|
122
|
+
return current_message
|
|
123
|
+
else:
|
|
124
|
+
# No progress information
|
|
125
|
+
if self.show_progress and self.progress_bar is not None:
|
|
126
|
+
if self.message_count == 0:
|
|
127
|
+
self.progress_bar.set_postfix_str("Waiting for progress update...")
|
|
128
|
+
except Exception as exc:
|
|
129
|
+
# If progress query fails, do not interrupt main process
|
|
130
|
+
if self.show_progress and self.progress_bar is not None:
|
|
131
|
+
error_msg = str(exc)[:50]
|
|
132
|
+
self.progress_bar.set_postfix_str("Error: %s..." % error_msg)
|
|
133
|
+
|
|
134
|
+
return None
|
|
135
|
+
|
|
136
|
+
def complete(self, success: bool = True, final_message: str = None) -> None:
|
|
137
|
+
"""
|
|
138
|
+
Complete progress monitoring.
|
|
139
|
+
|
|
140
|
+
Parameters
|
|
141
|
+
----------
|
|
142
|
+
success : bool, optional
|
|
143
|
+
Whether completed successfully, default is True.
|
|
144
|
+
final_message : str, optional
|
|
145
|
+
Final message to display.
|
|
146
|
+
"""
|
|
147
|
+
self.completed = True
|
|
148
|
+
if self.show_progress and self.progress_bar is not None:
|
|
149
|
+
end_time = datetime.now()
|
|
150
|
+
elapsed_time = end_time - self.start_time
|
|
151
|
+
elapsed_seconds = elapsed_time.total_seconds()
|
|
152
|
+
elapsed_str = self._format_time(elapsed_seconds)
|
|
153
|
+
|
|
154
|
+
# Update tqdm with final status
|
|
155
|
+
if final_message:
|
|
156
|
+
self.progress_bar.set_postfix_str(final_message)
|
|
157
|
+
else:
|
|
158
|
+
if success:
|
|
159
|
+
self.progress_bar.set_postfix_str("Query completed successfully")
|
|
160
|
+
else:
|
|
161
|
+
self.progress_bar.set_postfix_str("Query failed")
|
|
162
|
+
|
|
163
|
+
# Refresh display
|
|
164
|
+
self.progress_bar.refresh()
|
|
165
|
+
|
|
166
|
+
# Close the progress bar
|
|
167
|
+
time.sleep(0.1) # Short delay to ensure display
|
|
168
|
+
self.progress_bar.close()
|
|
169
|
+
|
|
170
|
+
# Call complete callback
|
|
171
|
+
if self.on_complete:
|
|
172
|
+
self.on_complete(success)
|
|
173
|
+
self.is_monitoring = False
|
|
174
|
+
|
|
175
|
+
@staticmethod
|
|
176
|
+
def _format_time(seconds: float) -> str:
|
|
177
|
+
"""Format elapsed time for display."""
|
|
178
|
+
if seconds < 60:
|
|
179
|
+
return "%ds" % int(seconds)
|
|
180
|
+
if seconds < 3600:
|
|
181
|
+
minutes = int(seconds // 60)
|
|
182
|
+
secs = int(seconds % 60)
|
|
183
|
+
return "%dm%ds" % (minutes, secs)
|
|
184
|
+
hours = int(seconds // 3600)
|
|
185
|
+
minutes = int((seconds % 3600) // 60)
|
|
186
|
+
return "%dh%dm" % (hours, minutes)
|
|
187
|
+
|
|
188
|
+
def stop(self) -> None:
|
|
189
|
+
"""Stop progress monitoring."""
|
|
190
|
+
if not self.completed:
|
|
191
|
+
if self.show_progress and self.progress_bar is not None:
|
|
192
|
+
self.progress_bar.set_postfix_str("Stopped")
|
|
193
|
+
time.sleep(0.1)
|
|
194
|
+
self.progress_bar.close()
|
|
195
|
+
self.completed = True
|
|
196
|
+
self.is_monitoring = False
|
|
197
|
+
|
|
198
|
+
def get_recent_messages(self, count: int = 10) -> List[Dict[str, str]]:
|
|
199
|
+
"""Get recent progress messages."""
|
|
200
|
+
return self.progress_messages[-count:] if self.progress_messages else []
|
|
201
|
+
|
|
202
|
+
def get_all_messages(self) -> List[Dict[str, str]]:
|
|
203
|
+
"""Get all progress messages."""
|
|
204
|
+
return self.progress_messages.copy()
|
|
205
|
+
|
|
206
|
+
def clear_messages(self) -> None:
|
|
207
|
+
"""Clear progress messages."""
|
|
208
|
+
self.progress_messages = []
|
|
209
|
+
|
|
210
|
+
def register_callback(self,
|
|
211
|
+
on_progress: Optional[Callable[[str], None]] = None,
|
|
212
|
+
on_complete: Optional[Callable[[bool], None]] = None) -> None:
|
|
213
|
+
"""
|
|
214
|
+
Register callback functions.
|
|
215
|
+
Parameters
|
|
216
|
+
----------
|
|
217
|
+
on_progress : Callable[[str], None], optional
|
|
218
|
+
Callback function when progress updates.
|
|
219
|
+
on_complete : Callable[[bool], None], optional
|
|
220
|
+
Callback function when completed.
|
|
221
|
+
"""
|
|
222
|
+
self.on_progress_update = on_progress
|
|
223
|
+
self.on_complete = on_complete
|