datagallery-evoeval 0.0.1__py3-none-any.whl
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.
- datagallery_evaluation/__init__.py +15 -0
- datagallery_evoeval-0.0.1.dist-info/METADATA +58 -0
- datagallery_evoeval-0.0.1.dist-info/RECORD +7 -0
- datagallery_evoeval-0.0.1.dist-info/WHEEL +5 -0
- datagallery_evoeval-0.0.1.dist-info/entry_points.txt +2 -0
- datagallery_evoeval-0.0.1.dist-info/top_level.txt +2 -0
- datagallery_evolution/__init__.py +3 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Copyright (c) Huawei Technologies Co., Ltd. 2026. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
# ============================================================================
|
|
15
|
+
"""DataGallery Evaluation framework."""
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: datagallery-evoeval
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Self-Evolution and evaluation framework for data analysis / NL2SQL / DACOMP / feature SQL agents.
|
|
5
|
+
Author: Huawei DataGallery Team
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Keywords: evaluation,benchmark,agent,nl2sql,dacomp,feature_sql
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
18
|
+
Requires-Python: >=3.10
|
|
19
|
+
Requires-Dist: loguru>=0.7.2
|
|
20
|
+
Requires-Dist: pyyaml>=6.0.0
|
|
21
|
+
Requires-Dist: pandas>=2.0.0
|
|
22
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
23
|
+
Provides-Extra: nl2sql
|
|
24
|
+
Requires-Dist: sqlglot>=20.0.0; extra == "nl2sql"
|
|
25
|
+
Provides-Extra: dacomp
|
|
26
|
+
Requires-Dist: openai>=1.0.0; extra == "dacomp"
|
|
27
|
+
Requires-Dist: tenacity>=8.0.0; extra == "dacomp"
|
|
28
|
+
Requires-Dist: requests>=2.31.0; extra == "dacomp"
|
|
29
|
+
Requires-Dist: httpx>=0.25.0; extra == "dacomp"
|
|
30
|
+
Provides-Extra: dataagent
|
|
31
|
+
Requires-Dist: langchain-core>=0.3.0; extra == "dataagent"
|
|
32
|
+
Provides-Extra: ade
|
|
33
|
+
Requires-Dist: dbt-core>=1.8.0; extra == "ade"
|
|
34
|
+
Requires-Dist: dbt-duckdb>=1.8.0; extra == "ade"
|
|
35
|
+
Requires-Dist: duckdb>=1.0.0; extra == "ade"
|
|
36
|
+
Provides-Extra: sql-feature-eval
|
|
37
|
+
Requires-Dist: sqlglot>=25.0.0; extra == "sql-feature-eval"
|
|
38
|
+
Provides-Extra: crb
|
|
39
|
+
Requires-Dist: pydantic>=2.0.0; extra == "crb"
|
|
40
|
+
Requires-Dist: langchain<2.0.0,>=1.2.0; extra == "crb"
|
|
41
|
+
Requires-Dist: langchain-core<2.0.0,>=1.2.0; extra == "crb"
|
|
42
|
+
Requires-Dist: langchain-openai<2.0.0,>=1.0.0; extra == "crb"
|
|
43
|
+
Requires-Dist: langgraph<1.1.0,>=1.0.8; extra == "crb"
|
|
44
|
+
Requires-Dist: requests>=2.31.0; extra == "crb"
|
|
45
|
+
Provides-Extra: evolution
|
|
46
|
+
Requires-Dist: duckdb>=1.1.0; extra == "evolution"
|
|
47
|
+
Requires-Dist: sqlglot>=25.0.0; extra == "evolution"
|
|
48
|
+
Requires-Dist: datasets>=2.14; extra == "evolution"
|
|
49
|
+
Requires-Dist: dspy>=3.0.0; extra == "evolution"
|
|
50
|
+
Requires-Dist: openai>=1.0.0; extra == "evolution"
|
|
51
|
+
Requires-Dist: optuna>=4.0.0; extra == "evolution"
|
|
52
|
+
Provides-Extra: all
|
|
53
|
+
Requires-Dist: evo-eval[nl2sql]; extra == "all"
|
|
54
|
+
Requires-Dist: evo-eval[dacomp]; extra == "all"
|
|
55
|
+
Requires-Dist: evo-eval[dataagent]; extra == "all"
|
|
56
|
+
Requires-Dist: evo-eval[ade]; extra == "all"
|
|
57
|
+
Requires-Dist: evo-eval[sql_feature_eval]; extra == "all"
|
|
58
|
+
Requires-Dist: evo-eval[crb]; extra == "all"
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
datagallery_evaluation/__init__.py,sha256=1LWWQjCb_g2RY1NPSmu89bILKleHrK_VXXCjSpaX5K0,734
|
|
2
|
+
datagallery_evolution/__init__.py,sha256=EW5IgXJykt7wBZYL4kA_-9TaxxAA1q_6Be40cmKcslk,95
|
|
3
|
+
datagallery_evoeval-0.0.1.dist-info/METADATA,sha256=S19hR9Ik6PifYnX33rzxT_SLmh7U_k1S_boaoXPkDdk,2643
|
|
4
|
+
datagallery_evoeval-0.0.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
5
|
+
datagallery_evoeval-0.0.1.dist-info/entry_points.txt,sha256=IdrMKMuJmaF1lQ7SvzAINqW-jGEr9VlKMck9iyeAzMg,73
|
|
6
|
+
datagallery_evoeval-0.0.1.dist-info/top_level.txt,sha256=3_lTflthWJZMBw0yfyXYFeoDK_jguc9LglQ354LN7eQ,45
|
|
7
|
+
datagallery_evoeval-0.0.1.dist-info/RECORD,,
|