FIX: QVAC (QuantumVerse Automatic Computer) Packing
CI / test (push) Successful in 2m38s
Release rolling / release (push) Failing after 6m17s

This commit is contained in:
Raven Scott
2026-07-30 14:17:06 -04:00
parent e2d909eaaa
commit bce96d6550
16 changed files with 1391 additions and 441 deletions
+21
View File
@@ -0,0 +1,21 @@
/**
* Desktop Bare worker entry for QVAC (Electron + Node).
*
* Prefer the file produced by packaging:
* - Electron Forge: `@qvac/sdk/electron-forge` → `qvac/worker.bundle.js`
* - Local: `npm run build:qvac-worker`
*
* This hand-written entry is a lean fallback for dev / pear when the SDK
* is installed but the bare-pack bundle has not been regenerated yet.
*
* Plugins match `qvac.config.json` (LLM completion only).
*
* @see https://docs.qvac.tether.io/tutorials/electron
*/
import { registerPlugin } from '@qvac/sdk/plugins'
import { llmPlugin } from '@qvac/sdk/llamacpp-completion/plugin'
registerPlugin(llmPlugin)
// RPC loop without re-registering every built-in plugin.
await import('@qvac/sdk/worker-core')