-
Notifications
You must be signed in to change notification settings - Fork 490
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (60 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
65 lines (60 loc) · 1.53 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
[tool.poetry]
name = "agenta"
version = "0.59.2"
description = "The SDK for agenta is an open-source LLMOps platform."
readme = "README.md"
authors = [
"Mahmoud Mabrouk <mahmoud@agenta.ai>",
"Juan Vega <jp@agenta.ai>"
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries"
]
homepage = "https://agenta.ai"
repository = "https://github.com/agenta-ai/agenta"
documentation = "https://docs.agenta.ai"
keywords = ["LLMOps", "LLM", "evaluation", "prompt engineering"]
exclude = [
"agenta/tests/*"
]
[tool.poetry.dependencies]
python = "^3.9"
starlette = "^0.47.0"
fastapi = "^0.116.0"
pydantic = "^2"
python-dotenv = "^1.0.0"
importlib-metadata = ">=8.0.0,<9.0"
httpx = "^0.28.0"
pyyaml = "^6.0.2"
toml = "^0.10.2"
litellm = "==1.76.0"
jinja2 = "^3.1.6"
opentelemetry-api = "^1.27.0"
opentelemetry-sdk = "^1.27.0"
opentelemetry-instrumentation = ">=0.56b0"
opentelemetry-exporter-otlp-proto-http ="^1.27.0"
structlog = "^25.2.0"
huggingface-hub = "<0.31.0"
# audit fixes
h11 = "^0.16.0"
decorator = "^5.2.1"
openai = "^1.106.0"
tiktoken = "0.11.0"
[tool.poetry.group.dev.dependencies]
posthog = "^3.1.0"
questionary = ">=1.10,<3.0"
pytest = "^8.4.2"
setuptools = ">=71.1,<79.0"
pytest-asyncio = "^0.24.0"
mypy = "^1.13.0"
pytest-xdist = "^3.6.1"
uvicorn = "^0.34.0"
requests = "^2.32.3"
pexpect = "^4.9.0"
boto3 = "^1.40.25"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"