Demo-Voice-Agent-Service / pyproject.toml
ishaq101's picture
Feat: STT & TTS Gemini, Creds Gemini Cloud Speech, Generate Buffer Audio, Testing
986403e
raw
history blame contribute delete
742 Bytes
[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",
]