Updates
Rolling release / release (push) Successful in 7m31s

This commit is contained in:
2026-09-11 19:39:24 -04:00
parent a78708f8ff
commit 0d85553120
3 changed files with 12 additions and 3 deletions
+6 -1
View File
@@ -1,5 +1,10 @@
import { qvacSdk } from '../daemon/qvac-master.js';
const sdk = await qvacSdk();
let sdk;
try {
sdk = await qvacSdk();
} catch (error) {
throw new Error(`Voice runtime could not initialize native QVAC plugins. Install libvulkan1 and a Vulkan driver on the build host. ${error.message}`, { cause: error });
}
for (const type of ['llamacpp-completion', 'whispercpp-transcription', 'tts-ggml']) {
if (!sdk.hasPlugin(type)) throw new Error(`Release is missing registered plugin: ${type}`);
}