First Try: QVAC (QuantumVerse Automatic Computer)
CI / test (push) Successful in 1m8s
Release rolling / release (push) Successful in 8m25s

This commit is contained in:
Raven Scott
2026-07-30 13:42:14 -04:00
parent f52168feb9
commit 32928f19bd
27 changed files with 2893 additions and 2 deletions
+26
View File
@@ -0,0 +1,26 @@
/**
* Pear Bare worker entry for QVAC (optional).
*
* When using @qvac/bare-sdk in a Pear build, register only the plugins you need:
* npm i @qvac/bare-sdk @qvac/llm-llamacpp @qvac/embed-llamacpp
*
* Add to package.json pear.stage.entrypoints: "/qvac/worker.pear.entry.mjs"
*
* Electron uses @qvac/sdk's default worker — this file is Pear-only.
*
* @see https://github.com/tetherto/qvac/tree/main/packages/bare-sdk
*/
// Uncomment when bare-sdk is installed:
//
// import { registerPlugin } from '@qvac/bare-sdk/plugins'
// import { llmPlugin } from '@qvac/bare-sdk/llamacpp-completion/plugin'
// // import { embedPlugin } from '@qvac/bare-sdk/llamacpp-embedding/plugin'
// registerPlugin(llmPlugin)
// // registerPlugin(embedPlugin)
// await import('../node_modules/@qvac/bare-sdk/worker.js').catch(() => {})
export const QVAC_PEAR_WORKER = {
status: 'stub',
note: 'Install @qvac/bare-sdk and enable plugin registration above for Pear native inference.',
}