Files
mission-control-v2/client/lucy-desktop/Lucy-Neustart.bat
T
Hitonabi aff0105700 Lucy v2: voice-core-Adapter, VAD, Overlay-Feinschliff + Projekt-Dateien
- voice-core/: STT/TTS hinter Engine-Interfaces (pocket/box austauschbar), SpeechScheduler ausgelagert
- useVAD (Freisprechen, adaptive RMS-Schwelle), usePushToTalk, sentiment
- Avatar3D/config/styles-Feinschliff, AuraGlow
- electron.vite.config, tsconfig, Starter-BATs, .gitignore (out/, avatar.vrm)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-02 10:29:22 +02:00

13 lines
744 B
Batchfile

@echo off
chcp 65001 >nul
REM Hygiene: Recon-Log mit Token entfernen
del /q "F:\Coding Stuff\mission-control-2\box_recon.log" 2>nul
echo Beende laufende Lucy-Instanz (pocket_server :8130 + Electron/Vite)...
powershell -NoProfile -ExecutionPolicy Bypass -Command "Get-CimInstance Win32_Process | Where-Object { $_.CommandLine -match 'pocket_server:app|lucy-desktop|electron-vite' } | ForEach-Object { Write-Output ('kill ' + $_.ProcessId + ' ' + $_.Name); Stop-Process -Id $_.ProcessId -Force -ErrorAction SilentlyContinue }"
timeout /t 2 >nul
echo.
echo Starte Lucy neu (frischer Voice-Server + Client mit erweitertem Umlaut-Fix)...
start "" "F:\Coding Stuff\mission-control-2\client\lucy-desktop\start-lucy.cmd"
timeout /t 3 >nul
echo Fertig.