Files
peardata/qvac/worker.pear.entry.mjs
T
Raven Scott bce96d6550
CI / test (push) Successful in 2m38s
Release rolling / release (push) Failing after 6m17s
FIX: QVAC (QuantumVerse Automatic Computer) Packing
2026-07-30 14:17:06 -04:00

16 lines
491 B
JavaScript

/**
* Pear Bare worker entry for QVAC.
*
* Listed in package.json → pear.stage.entrypoints.
* Plugins match qvac.config.json (LLM completion only).
*
* Requires `@qvac/sdk` in this project's node_modules (CI and local).
* pear run -d . resolves the same tree as Electron when deps are installed.
*/
import { registerPlugin } from '@qvac/sdk/plugins'
import { llmPlugin } from '@qvac/sdk/llamacpp-completion/plugin'
registerPlugin(llmPlugin)
await import('@qvac/sdk/worker-core')