-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (83 loc) · 2.43 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (83 loc) · 2.43 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
[project]
name = "calibrate-agent"
dynamic = ["version"]
description = "Framework for evaluating text and voice AI agents"
readme = "README.md"
license = "CC-BY-SA-4.0"
license-files = ["LICENSE.md"]
requires-python = ">=3.11"
authors = [
{name = "Aman Dalmia", email = "aman.dalmia@artpark.in"},
]
keywords = ["voice-agents", "evaluation", "benchmarking", "stt", "tts", "llm", "simulation", "pipecat"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
dependencies = [
"backoff>=2.2.1",
"cartesia>=2.0.15,<3",
"elevenlabs>=2.31.0",
"evaluate>=0.4.6",
"indic-nlp-library>=0.92",
"instructor>=1.13.0",
"jiwer>=4.0.0",
"joblib>=1.3.0",
"langfuse==3.3.0",
"matplotlib>=3.10.7",
"natsort>=8.4.0",
"numpy>=1.26.0",
"onnxruntime>=1.23.2",
"openpyxl>=3.1.5",
"opentelemetry-api>=1.38.0",
"opentelemetry-exporter-otlp>=1.38.0",
"opentelemetry-sdk>=1.38.0",
"pipecat-ai-small-webrtc-prebuilt==1.0.0",
"pipecat-ai[cartesia,deepgram,google,groq,local-smart-turn-v3,openrouter,smallest,tracing,webrtc,websocket]==1.0.0",
"python-dotenv>=1.2.1",
"sarvamai>=0.1.21",
"simpleaudio>=1.0.4",
"sounddevice>=0.5.3",
"uvicorn>=0.38.0",
"whisper-normalizer>=0.1.12",
]
[project.optional-dependencies]
dev = [
"ipdb>=0.13.13",
"ipython>=8.37.0",
"pytest>=7.0",
"pytest-httpserver>=1.0",
"pytest-cov>=4.0",
"pyyaml>=6.0",
]
[project.urls]
Documentation = "https://calibrate.artpark.ai/docs"
[project.scripts]
calibrate-agent = "calibrate_agent.cli:main"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["ui*", "examples*", "docs*", "images*"]
[tool.setuptools.package-data]
"calibrate_agent" = [
"ui/cli.bundle.mjs",
"stt/sarvam_intent_entity/prompt_template.txt",
"stt/sarvam_llm_wer/prompt_template.txt",
"stt/semantic_wer/prompt_template.txt",
"pricing_data.json",
]
[tool.setuptools_scm]
local_scheme = "no-local-version"
fallback_version = "0.0.0-dev"
[tool.uv.workspace]
members = [
"test",
]
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"