16 lines
491 B
JavaScript
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')
|