AgentServer in livekit-agents 1.4.x does not support --agent-name CLI flag. The agent_name must be set on @server.rtc_session() decorator. Also reverts docker-compose.yml command back to plain python agent.py start. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
307 B
YAML
19 lines
307 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
|
|
volumes:
|
|
- bot-crypto:/data/crypto_store
|
|
|
|
volumes:
|
|
bot-crypto:
|