Feat: Hermes Voice Client (Wake Word + STT + Vision + TTS)

Windows-Desktop-Script: Energy VAD + Whisper Wake Detection,
faster-whisper STT, mss Screen Capture, MC2 Vision/Chat API,
Edge TTS Ausgabe, pystray System Tray. Kein Account nötig —
Wake Word frei konfigurierbar via WAKE_WORDS in config.py.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Hitonabi
2026-06-26 22:02:52 +02:00
parent 9b68db9e82
commit e19831f7d5
9 changed files with 539 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
@echo off
echo ========================================
echo Hermes Voice Client — Setup
echo ========================================
echo.
:: Python pruefen
python --version >nul 2>&1
if errorlevel 1 (
echo [FEHLER] Python nicht gefunden. Bitte Python 3.11+ installieren.
pause
exit /b 1
)
:: Venv anlegen falls nicht vorhanden
if not exist ".venv" (
echo [1/3] Erstelle virtuelle Umgebung...
python -m venv .venv
)
:: Dependencies installieren
echo [2/3] Installiere Dependencies...
.venv\Scripts\pip install --upgrade pip -q
.venv\Scripts\pip install -r requirements.txt
echo [3/3] Pruefe Porcupine-Konfiguration...
.venv\Scripts\python -c "from config import PORCUPINE_ACCESS_KEY; print('OK' if PORCUPINE_ACCESS_KEY != 'DEIN_ACCESS_KEY_HIER' else 'WARNUNG: Access Key fehlt noch in config.py!')"
echo.
echo ========================================
echo Setup abgeschlossen!
echo.
echo Naechste Schritte:
echo 1. https://console.picovoice.ai/ - kostenlos registrieren
echo 2. Access Key in config.py eintragen (PORCUPINE_ACCESS_KEY)
echo 3. Wake Word trainieren - .ppn Datei in diesen Ordner legen
echo 4. Dateiname in config.py eintragen (WAKE_WORD_MODEL_PATH)
echo 5. start.bat
echo ========================================
pause