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.
@@ -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
- if (!hasAny && !skipIfDone) {
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "recallmem",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Private, local-first AI chatbot with persistent working memory. One command install via npx.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Chris Sean",