voice-agent / pyproject.toml
RalphThings's picture
Deploy Hugging Face Space
7274ee2
raw
history blame contribute delete
644 Bytes
[project]
name = "voice-latency-lab"
version = "0.1.0"
description = "Low-latency local speech loop for phone testing with faster-whisper and Chatterbox Turbo."
readme = "README.md"
requires-python = ">=3.11,<3.13"
dependencies = [
"fastapi>=0.116.0",
"uvicorn[standard]>=0.35.0",
"numpy>=1.24,<1.26",
"scipy>=1.10,<1.14",
"httpx>=0.28.0",
"pydantic-settings>=2.10.0",
"faster-whisper>=1.2.0",
"soundfile>=0.13.1",
"silero-vad>=6.2.1",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["app"]
[tool.uv.extra-build-dependencies]
pkuseg = ["numpy"]