aff0105700
- 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>
14 lines
625 B
Batchfile
14 lines
625 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
cd /d "F:\Coding Stuff\mission-control-2\client\lucy-desktop"
|
|
echo Beende haengende Versuche (ohne mich selbst)...
|
|
powershell -NoProfile -Command "Get-CimInstance Win32_Process | Where-Object { $_.Name -eq 'electron.exe' -or $_.CommandLine -match 'electron-vite|pocket_server:app|start-lucy' } | ForEach-Object { Stop-Process -Id $_.ProcessId -Force -EA SilentlyContinue }"
|
|
timeout /t 2 >nul
|
|
echo Starte 'npm run dev' mit Log-Capture...
|
|
start /b "" cmd /c "npm run dev > dev.log 2>&1"
|
|
timeout /t 22 >nul
|
|
echo === dev.log ===
|
|
type dev.log
|
|
echo.
|
|
echo (laeuft im Hintergrund weiter, falls erfolgreich)
|