Updates
Rolling release / release (push) Failing after 1m24s

This commit is contained in:
2026-09-11 19:36:12 -04:00
parent 7604cded2c
commit a78708f8ff
26 changed files with 298 additions and 59 deletions
+10
View File
@@ -0,0 +1,10 @@
import { qvacSdk } from '../daemon/qvac-master.js';
const sdk = await qvacSdk();
for (const type of ['llamacpp-completion', 'whispercpp-transcription', 'tts-ggml']) {
if (!sdk.hasPlugin(type)) throw new Error(`Release is missing registered plugin: ${type}`);
}
for (const model of ['WHISPER_TINY', 'VAD_SILERO_5_1_2', 'TTS_EN_SUPERTONIC_Q8_0']) {
if (!sdk[model]) throw new Error(`Release is missing model asset: ${model}`);
}
console.log('Voice runtime: native ASR/TTS plugins and model registry verified');
await sdk.close();