FIX: QVAC Updates
CI / test (push) Successful in 2m45s
Release rolling / release (push) Successful in 11m36s

This commit is contained in:
Raven Scott
2026-07-30 15:23:43 -04:00
parent 79250e1a55
commit 4b5b78892f
25 changed files with 2886 additions and 345 deletions
+5
View File
@@ -16,6 +16,7 @@
* minRamGb: number,
* minDiskGb: number,
* approxDownloadGb: number,
* ctxSize: number,
* }} QvacProfile
*/
@@ -31,6 +32,7 @@ export const QVAC_PROFILES = {
minRamGb: 4,
minDiskGb: 2,
approxDownloadGb: 0.5,
ctxSize: 4096,
},
recommended: {
id: 'recommended',
@@ -42,6 +44,7 @@ export const QVAC_PROFILES = {
minRamGb: 8,
minDiskGb: 5,
approxDownloadGb: 2.5,
ctxSize: 8192,
},
strong: {
id: 'strong',
@@ -53,6 +56,7 @@ export const QVAC_PROFILES = {
minRamGb: 16,
minDiskGb: 8,
approxDownloadGb: 3.5,
ctxSize: 8192,
},
'tool-tiny': {
id: 'tool-tiny',
@@ -64,6 +68,7 @@ export const QVAC_PROFILES = {
minRamGb: 6,
minDiskGb: 3,
approxDownloadGb: 1,
ctxSize: 4096,
},
}