recallmem 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/commands/setup.js +4 -1
- package/package.json +1 -1
package/bin/commands/setup.js
CHANGED
|
@@ -363,7 +363,10 @@ async function setupCommand(opts = {}) {
|
|
|
363
363
|
const hasE2 = await detectOllamaModel("gemma4:e2b");
|
|
364
364
|
const hasAny = has26.installed || has31.installed || hasE2.installed;
|
|
365
365
|
|
|
366
|
-
|
|
366
|
+
// Always show the picker when no Gemma chat model is installed.
|
|
367
|
+
// skipIfDone is intentionally NOT checked here - on a fresh machine
|
|
368
|
+
// we MUST pull a model or the chat 404s on first message.
|
|
369
|
+
if (!hasAny) {
|
|
367
370
|
const choice = await pickGemmaModel();
|
|
368
371
|
step(`Downloading ${choice.label}... (this can take a while)`);
|
|
369
372
|
try {
|