voice-agent/start.sh

13 lines
375 B
Bash
Raw Permalink Normal View History

2026-08-31 11:47:29 -04:00
#!/usr/bin/env bash
# start.sh — just runs docker compose. Everything is containerised now.
set -e
echo "==> Starting all services (LiveKit + Ollama + Kokoro TTS + UI + Agent)..."
echo " First run will pull/build images and download models — may take a few minutes."
echo ""
docker compose up --build "$@"
echo ""
echo "Open http://localhost:7731 in your browser."