-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (98 loc) · 2.85 KB
/
pyproject.toml
File metadata and controls
105 lines (98 loc) · 2.85 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "agentune"
version = "0.1.1"
description = "Analyze AI agents to understand their performance and get improvement suggestions to make them better"
authors = [{name = "Agentune dev team", email = "agentune-dev@sparkbeyond.com"}]
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.12.6,<4.0"
keywords = [
"agent optimization",
"AI agent improvement",
"agent evaluation",
"customer support",
"sales agents",
"conversational agents",
"AI agents",
"chatbot evaluation",
"customer service",
"customer facing agents"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: Apache Software License",
]
[project.urls]
Repository = "https://github.com/SparkBeyond/agentune"
Homepage = "https://github.com/SparkBeyond/agentune/tree/main/"
Documentation = "https://github.com/SparkBeyond/agentune/tree/main/"
[tool.poetry]
packages = [{include = "agentune"}]
[tool.poetry.dependencies]
python = "^3.12.6"
duckdb = ">=1.4.2,<1.5.0"
pyarrow = [
{ version = ">=19.0.1", python = "<3.14" },
{ version = ">=22.0.0", python = ">=3.14" }
]
numpy = [
{ version = "^2.2.4", python = "< 3.14" },
{ version = "^2.3.4", python = ">= 3.14" }
]
janus = "^2.0.0"
polars = "^1.34.0"
attrs = "^25.3.0"
scikit-learn = [
{ version = "^1.6.1", python = "< 3.14" },
{ version = "^1.7.2", python = ">= 3.14" }
]
scipy = [
{ version = "^1.15.3", python = "< 3.14" },
{ version = "^1.16.1", python = ">= 3.14" }
]
scipy-stubs = [
{ version = "^1.15.3", python = "< 3.14" },
{ version = "^1.16.1", python = ">= 3.14" }
]
cattrs = "^25.3.0"
httpx = {extras = ["http2"], version = "^0.28.1"}
frozendict = "^2.4.6"
more-itertools = "^10.7.0"
llama-index-core = "^0.14.7"
llama-index-llms-openai = "^0.6.7"
lightgbm = "^4.6.0"
rich = "^14.0.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.18.2"
ruff = "^0.12.11"
pytest-mypy-plugins = "^3.2.0"
pyarrow-stubs = ">=19.0"
pytest = "^8.4.2"
matplotlib = "^3.10.7"
pytest-asyncio = "^1.2.0"
[tool.poetry.group.examples.dependencies]
jupyter = "^1.1.0"
notebook = "^7.4.0"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"-m not integration"
]
testpaths = [ "tests" ]
pythonpath = ["."]
tmp_path_retention_policy = "none"
asyncio_mode = "auto"
markers = [
"integration: marks tests as integration tests (deselected by default)"
]