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>
This commit is contained in:
13
satellite/__main__.py
Normal file
13
satellite/__main__.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""
|
||||
Cosmo Satellite — голосовой клиент для OpenClaw Gateway
|
||||
Запуск: python -m satellite [--wake]
|
||||
"""
|
||||
import sys
|
||||
|
||||
from .modes import run_with_enter, run_with_porcupine
|
||||
|
||||
if __name__ == "__main__":
|
||||
if "--wake" in sys.argv:
|
||||
run_with_porcupine()
|
||||
else:
|
||||
run_with_enter()
|
||||
Reference in New Issue
Block a user