-
Notifications
You must be signed in to change notification settings - Fork 498
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (97 loc) · 2.36 KB
/
Copy pathpyproject.toml
File metadata and controls
103 lines (97 loc) · 2.36 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tau2"
version = "1.0.1"
description = "tau-bench: Benchmarking tool-agent-user interaction in real-world domains"
readme = "README.md"
requires-python = ">=3.12,<3.14"
license = "MIT"
authors = [
{ name = "Victor Barres", email = "victor.barres@gmail.com" },
{ name = "Honghua Dong", email = "dhh19951@gmail.com" }
]
dependencies = [
"rich",
"tabulate>=0.9.0",
"fastapi>=0.115.11",
"uvicorn>=0.34.0",
"pandas>=2.2.3",
"psutil>=7.0.0",
"loguru>=0.7.3",
"docstring-parser>=0.16",
"litellm>=1.80.15,<1.82.7",
"tenacity>=9.0.0",
"deepdiff>=8.4.2",
"addict>=2.4.0",
"PyYAML>=6.0.2",
"toml>=0.10.2",
"python-dotenv>=1.0.0",
"typer>=0.12.5",
"requests>=2.31.0",
"numpy>=1.24.0",
"httpx>=0.24.0",
]
[project.optional-dependencies]
voice = [
"elevenlabs>=1.54.0",
"deepgram-sdk>=3.7.3",
"websockets>=13.0",
"pyaudio>=0.2.14",
"jiwer>=3.0.0",
"scipy>=1.10.0",
"pydub>=0.25.0",
"tqdm>=4.0",
"aiohttp>=3.0",
"google-genai>=1.0.0",
"boto3>=1.35.0",
"aws-sdk-bedrock-runtime>=0.3.0",
"google-cloud-aiplatform>=1.38.0",
"google-auth>=2.23.0",
"livekit-agents>=1.5.0",
"livekit-plugins-deepgram>=1.5.0",
"livekit-plugins-openai>=1.5.0",
]
knowledge = [
"rank-bm25>=0.2.2",
"openai>=1.0.0",
]
gym = [
"gymnasium>=1.2.2",
]
dev = [
"pytest>=8.3.5",
"pytest-xdist>=3.5.0",
"ruff>=0.9.1",
"pre-commit>=4.0.0",
]
experiments = [
"plotly>=6.0.0",
"matplotlib>=3.10.1",
"seaborn>=0.13.2",
"scikit-learn>=1.6.1",
]
all = [
"tau2[voice,knowledge,gym,dev,experiments]",
]
[project.urls]
Homepage = "https://taubench.com/"
Repository = "https://github.com/sierra-research/tau2-bench"
[project.scripts]
tau2 = "tau2.cli:main"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:litellm.*:",
"ignore:Pydantic serializer warnings:UserWarning:pydantic.*:",
]
asyncio_default_fixture_loop_scope = "function"
markers = [
"full_duplex_integration: marks tests as full-duplex integration tests requiring OpenAI Realtime API and TTS (deselect with '-m \"not full_duplex_integration\"')",
]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
ignore = ["E501", "F541"]
[tool.ruff]
line-length = 88
exclude = ["*.ipynb"]