-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
88 lines (75 loc) · 1.74 KB
/
pyproject.toml
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
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry]
name = "freeact"
version = "0.0.0"
description = "A lightweight library for code-action based agents"
homepage = "https://github.com/gradion-ai/freeact"
readme = "README.md"
license = "Apache-2.0"
authors = [
"Martin Krasser <[email protected]>",
"Christoph Stumpf <[email protected]>",
]
packages = [
{ include = "freeact" },
]
[tool.poetry.dependencies]
aioconsole = "^0.8.1"
aiofiles = "^24.1"
anthropic = "^0.43.0"
google-genai = "^0.6.0"
ipybox = "^0.3.1"
openai = "^1.59"
prompt_toolkit = "^3.0"
python = "^3.11,<3.14"
python-dotenv = "^1.0"
rich = "^13.9"
typer = "^0.12.5"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.48"
mkdocstrings-python = "^1.12.2"
[tool.poetry.group.eval]
optional = true
[tool.poetry.group.eval.dependencies]
openai = "^1.59.0"
datasets = "^3.2.0"
pandas = "^2.2.3"
matplotlib = "^3.10.0"
seaborn = "^0.13.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0"
invoke = "^2.2"
pytest = "^8.3"
pytest-asyncio = "^0.24.0"
flaky = "^3.8.1"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff]
line-length = 120
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = ["F401"]
[tool.mypy]
python_version = 3.11
check_untyped_defs = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"aiofiles",
"aiofiles.os",
"dateutil.relativedelta",
"dateutil.parser",
"requests",
"requests.exceptions",
"yaml"
]
ignore_missing_imports = true
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
pattern = "default-unprefixed"
style = "pep440"