Bot @ai:agiliton.eu accepts room invites, dispatches LiveKit agent. Agent joins call with STT (Groq Whisper) → LLM (Sonnet) → TTS (ElevenLabs) pipeline, all routed through LiteLLM. CF-1147 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
232 B
YAML
14 lines
232 B
YAML
services:
|
|
agent:
|
|
build: .
|
|
command: python agent.py start
|
|
env_file: .env
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
|
|
bot:
|
|
build: .
|
|
command: python bot.py
|
|
env_file: .env
|
|
restart: unless-stopped
|