- Fix Wyoming satellite crash on wake word: convert macOS .aiff chimes to .wav (Python wave module only reads RIFF format, not AIFF) - Fix OpenClaw HTTP bridge: increase subprocess timeout 30s → 120s, add SO_REUSEADDR - Fix HA conversation component: use HTTP agent (not CLI) since HA runs in Docker on a different machine; update default host to Mac Mini IP, timeout to 120s - Rewrite character manager as Vite+React app with schema validation - Add Wyoming satellite wake word command, ElevenLabs TTS server, wakeword monitor - Add Phase 5 development plan - Update TODO.md: mark voice pipeline and agent tasks complete Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
48 lines
2.9 KiB
Plaintext
48 lines
2.9 KiB
Plaintext
# HomeAI — Shared Configuration Template
|
|
# Copy to .env and fill in your values.
|
|
# .env is gitignored — never commit it.
|
|
|
|
# ─── Data & Paths ──────────────────────────────────────────────────────────────
|
|
DATA_DIR=${HOME}/homeai-data
|
|
REPO_DIR=${HOME}/Projects/HomeAI
|
|
|
|
# ─── Network ───────────────────────────────────────────────────────────────────
|
|
# Set to your machine's local IP (not 127.0.0.1)
|
|
HOST_IP=192.168.1.100
|
|
|
|
# ─── P1: Infrastructure ────────────────────────────────────────────────────────
|
|
# Pre-existing instances — set these to your actual URLs
|
|
HA_URL=http://localhost:8123
|
|
HA_TOKEN= # Generated in Home Assistant UI → Profile → Security
|
|
PORTAINER_URL=https://localhost:9443
|
|
GITEA_URL=http://localhost:3000
|
|
|
|
# Managed by homeai-infra docker-compose
|
|
UPTIME_KUMA_URL=http://localhost:3001
|
|
CODE_SERVER_URL=http://localhost:8090
|
|
CODE_SERVER_PASS= # Set in homeai-infra/docker/.env
|
|
N8N_URL=http://localhost:5678
|
|
N8N_USER=admin
|
|
N8N_PASS= # Set in homeai-infra/docker/.env
|
|
|
|
# ─── P2: LLM ───────────────────────────────────────────────────────────────────
|
|
OLLAMA_URL=http://localhost:11434
|
|
OLLAMA_API_URL=http://localhost:11434/v1
|
|
OPEN_WEBUI_URL=http://localhost:3030
|
|
OLLAMA_PRIMARY_MODEL=llama3.3:70b
|
|
OLLAMA_FAST_MODEL=qwen2.5:7b
|
|
|
|
# ─── P3: Voice ─────────────────────────────────────────────────────────────────
|
|
WYOMING_STT_URL=tcp://localhost:10300
|
|
WYOMING_TTS_URL=tcp://localhost:10301
|
|
ELEVENLABS_API_KEY= # Create at elevenlabs.io if using elevenlabs TTS engine
|
|
|
|
# ─── P4: Agent ─────────────────────────────────────────────────────────────────
|
|
OPENCLAW_URL=http://localhost:8080
|
|
|
|
# ─── P7: Visual ────────────────────────────────────────────────────────────────
|
|
VTUBE_WS_URL=ws://localhost:8001
|
|
|
|
# ─── P8: Images ────────────────────────────────────────────────────────────────
|
|
COMFYUI_URL=http://localhost:8188
|