forked from GetStream/Vision-Agents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (96 loc) · 2.74 KB
/
pyproject.toml
File metadata and controls
102 lines (96 loc) · 2.74 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
[build-system]
requires = ["hatchling", "hatch-vcs", "setuptools-scm"]
build-backend = "hatchling.build"
[tool.uv.sources]
vision-agents = { workspace = true }
vision-agents-plugins-anthropic = { workspace = true }
vision-agents-plugins-aws = { workspace = true }
vision-agents-plugins-cartesia = { workspace = true }
vision-agents-plugins-deepgram = { workspace = true }
vision-agents-plugins-elevenlabs = { workspace = true }
vision-agents-plugins-fal = { workspace = true }
vision-agents-plugins-fish = { workspace = true }
vision-agents-plugins-gemini = { workspace = true }
vision-agents-plugins-kokoro = { workspace = true }
vision-agents-plugins-openai = { workspace = true }
vision-agents-plugins-openrouter = { workspace = true }
vision-agents-plugins-xai = { workspace = true }
vision-agents-plugins-getstream = { workspace = true }
vision-agents-plugins-ultralytics = { workspace = true }
vision-agents-plugins-krisp = { workspace = true }
vision-agents-plugins-smart-turn = { workspace = true }
vision-agents-plugins-wizper = { workspace = true }
vision-agents-plugins-heygen = { workspace = true }
vision-agents-plugins-moondream = { workspace = true }
vision-agents-plugins-vogent = { workspace = true }
[tool.uv]
# Workspace-level override to resolve numpy version conflicts
# vogent-turn requires numpy<2.0, so we override to use 1.26.x
override-dependencies = [
"numpy>=1.26.0,<2.0"
]
[tool.uv.workspace]
members = [
"agents-core",
"plugins/anthropic",
"plugins/aws",
"plugins/cartesia",
"plugins/deepgram",
"plugins/elevenlabs",
"plugins/fish",
"plugins/gemini",
"plugins/kokoro",
"plugins/openai",
"plugins/openrouter",
"plugins/xai",
"plugins/getstream",
"plugins/ultralytics",
"plugins/krisp",
"plugins/smart_turn",
"plugins/wizper",
"plugins/heygen",
"plugins/vogent",
"plugins/moondream"
]
exclude = [
"**/__pycache__",
"**/tests/__pycache__",
"**/*.pyc",
"**/dist/",
"**/*.egg-info/",
"**/.pytest_cache/",
"**/.mypy_cache/",
"**/.ruff_cache/",
"examples/",
"**/test*",
]
[dependency-groups]
dev = [
"ruff",
"mypy",
"pip>=25.2",
"pytest",
"pytest-xdist",
"pytest-asyncio",
"python-dotenv",
"pre-commit",
"scalene>=1.5.54",
"fastmcp>=2.12.3",
"opentelemetry-exporter-otlp>=1.37.0",
"pytest-timeout>=2.4.0",
"hatch-vcs>=0.5.0",
"hatch>=1.14.2",
"blockbuster>=1.5.5,<1.6",
"aiofiles>=25.1.0",
]
[tool.mypy]
python_version = "3.12"
mypy_path = ["agents-core"]
# Gradual typing → can tighten over time
ignore_missing_imports = true
check_untyped_defs = true
namespace_packages = true
explicit_package_bases = true
[tool.hatch.version]
source = "vcs"
raw-options = { search_parent_directories = true, fallback_version = "0.0.0" }