privatevoice.src/frontend/src/App.svelte
File was renamed from VoiceSnapGo/frontend/src/App.svelte @@ -66,6 +66,15 @@ }) // Query engine status on mount (events emitted before frontend load are lost) Call.ByName('voicesnap/services.EngineService.GetStatus').then((data: any) => { if (data?.status) { engineStatus.set(data.status as any) } if (data?.hardwareInfo) { engineHardwareInfo.set(data.hardwareInfo) } }) Call.ByName('voicesnap/services.EngineService.ModelExists').then((exists: any) => { if (!exists) { engineStatus.set('need_model')