Updates
jarvis-ci / node (push) Failing after 2m33s

This commit is contained in:
2026-09-11 14:00:44 -04:00
parent 8f6884ac42
commit 68d7a40605
12 changed files with 204 additions and 29 deletions
+11
View File
@@ -0,0 +1,11 @@
export const MODEL_PROFILES = Object.freeze({
'laptop-8gb': { model: 'qwen3-1.7b', minRamGb: 8, vision: false },
'laptop-16gb': { model: 'qwen3.5-4b', minRamGb: 10, vision: true },
'desktop-gpu': { model: 'qwen3.5-9b', minRamGb: 16, vision: true },
});
export function profile(name = 'laptop-16gb') {
const selected = MODEL_PROFILES[name];
if (!selected) throw new Error(`unknown Jarvis model profile: ${name}`);
return { name, ...selected };
}