Spaces:
Sleeping
Sleeping
File size: 742 Bytes
226ff5d aebb7d4 e75bac4 986403e 226ff5d 986403e | 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 | [project]
name = "voice-agent"
version = "1.1.0"
requires-python = ">=3.11"
dependencies = [
"fastapi==0.115.0",
"uvicorn[standard]==0.30.6",
"websockets==13.1",
"httpx==0.27.2",
"python-dotenv==1.0.1",
"assemblyai==0.33.0",
"cartesia==1.3.1",
"deepgram-sdk>=6.1.1",
"python-multipart>=0.0.26",
"google-genai>=1.0.0",
"google-generativeai>=0.8.6",
"google-cloud-texttospeech>=2.29.0",
"google-cloud-speech>=2.0.0",
"numpy>=1.26.0",
]
[project.optional-dependencies]
dev = [
"websockets==13.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[dependency-groups]
dev = [
"sounddevice>=0.5.5",
]
|