-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 1.15 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aia26"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"deepagents>=0.6.1",
# PyPI quarantined guardrails-ai after a supply-chain incident; pin safe v0.10.0 from GitHub.
"guardrails-ai @ git+https://github.com/guardrails-ai/guardrails.git@v0.10.0",
"jinja2>=3.1.6",
"langchain-mcp-adapters>=0.2.2",
"langchain-openrouter>=0.2.3",
"langfuse>=4.6.1",
"python-dotenv>=1.2.2",
"rich>=14.3.4",
"tavily-python>=0.7.24",
# Pin tokenizers below 0.23 so the `transformers` brought in by the
# Guardrails Hub validators (which pins `tokenizers>=0.22.0,<=0.23.0`)
# doesn't clash with what `litellm` would otherwise resolve to.
# `tokenizers 0.23.0` was never released as stable (the line jumps
# from 0.22.2 directly to 0.23.1), so this effectively locks to 0.22.x.
"tokenizers<0.23",
]
[tool.hatch.build.targets.wheel]
packages = ["common"]
[tool.hatch.metadata]
allow-direct-references = true
[dependency-groups]
dev = ["deepagents-code[openrouter]"]