specmem-hardwicksoftware 3.5.27 → 3.5.28

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.

Potentially problematic release.


This version of specmem-hardwicksoftware might be problematic. Click here for more details.

package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specmem-hardwicksoftware",
3
- "version": "3.5.27",
3
+ "version": "3.5.28",
4
4
  "type": "module",
5
5
  "description": "SpecMem - Speculative Memory for Claude Code. Auto-configures hooks, docker, embeddings. https://justcalljon.pro",
6
6
  "main": "dist/index.js",
@@ -527,8 +527,10 @@ print(f"""
527
527
  console.log(`${GREEN}${BOLD}✓ Optimization complete!${RESET}\n`);
528
528
  resolve();
529
529
  } else {
530
- console.log(`${RED}Optimization failed: ${error}${RESET}`);
531
- reject(new Error('Optimization failed'));
530
+ console.log(`${YELLOW}Optimization had issues but base model is ready${RESET}`);
531
+ console.log(`${DIM}SpecMem will use PyTorch model (still fast!)${RESET}`);
532
+ // Don't fail - continue with unoptimized model
533
+ resolve();
532
534
  }
533
535
  });
534
536
  });