-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (66 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
74 lines (66 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "clear_eval"
version = "1.1.0"
description = "A python API sdk facilitating Error Analysis via LLM-as-a-Judge"
readme = "README.md"
authors = [{ name = "Lilach Eden", email = "lilache@il.ibm.com"},
{name = "Asaf Yehudai", email = "asaf.yehudai@ibm.com"}]
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"python-dotenv",
"langchain",
"langgraph",
"langchain_openai",
"langchain_ibm",
"ibm_watsonx_ai>=1.2.8",
"openai",
"pyyaml",
"pandas",
"tqdm",
"pyyaml",
"streamlit",
"matplotlib",
"seaborn",
"langchain_community",
"numpy",
"pyarrow>=15.0.0",
"nest-asyncio",
"nicegui>=2.0.0",
"plotly",
"networkx",
"litellm>=1.83.0",
"nest-asyncio",
"scipy",
'scikit-learn'
]
[project.optional-dependencies]
tool-calls = [
"agent-lifecycle-toolkit[refraction] @ git+ssh://git@github.com/AgentToolkit/agent-lifecycle-toolkit.git"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = ["src"]
include = ["clear_eval", "clear_eval.*"]
[tool.setuptools.package-data]
clear_eval = ["**/*.yaml", "**/*.csv", "**/*.json", "**/*.txt", "**/*.zip"]
[project.scripts]
run-analysis = "clear_eval.cli:main"
run-clear-eval-analysis = "clear_eval.cli:main"
run-clear-eval-generation = "clear_eval.cli:run_generation_cli"
run-clear-eval-evaluation = "clear_eval.cli:run_evaluation_cli"
run-clear-eval-aggregation = "clear_eval.cli:run_aggregation_cli"
run-clear-eval-dashboard = "clear_eval.cli:run_dashboard_cli"
run-clear-agentic-eval = "clear_eval.cli:run_clear_agentic_eval"
launch-agentic-dashboard = "clear_eval.cli:run_clear_agentic_dashboard"
run-clear-agentic-dashboard = "clear_eval.cli:run_clear_agentic_dashboard"