Files
home-voice-assistant/satellite.py
Daniil Klimov 7ca8268b78 Initial commit: Cosmo Voice Satellite
Two-agent voice assistant (Cosmo + Люся) via OpenClaw Gateway.
Streaming STT (Groq) + LLM + TTS (ElevenLabs) pipeline with
keep-alive sessions, barge-in, and daily conversation sessions.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-12 13:34:08 +03:00

13 lines
312 B
Python

#!/usr/bin/env python3
"""
Cosmo Satellite — голосовой клиент для OpenClaw Gateway
Обёртка: запускает satellite package
"""
import sys
from satellite.modes import run_with_enter, run_with_porcupine
if "--wake" in sys.argv:
run_with_porcupine()
else:
run_with_enter()