feat: agent.py with Azure STT/TTS + Gemma LLM pipeline, voice switching

This commit is contained in:
Shane
2026-08-22 07:40:58 -04:00
parent f7ff1c61ac
commit bbca8505d7
2 changed files with 185 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "voice-agent"
version = "0.1.0"
description = "Real-time voice assistant: Azure STT/TTS + Gemma LLM via LiveKit Agents"
requires-python = ">=3.10,<3.15"
dependencies = [
"livekit-agents~=1.7",
"livekit-plugins-azure~=1.7",
"livekit-plugins-openai~=1.7",
"python-dotenv",
]
[tool.setuptools.packages.find]
where = ["."]