claude-memory-layer 1.0.30 → 1.0.31

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.
@@ -1692,9 +1692,10 @@ function isMissingTransformersDependencyError(error) {
1692
1692
  function createEmbeddingBackendUnavailableError(cause) {
1693
1693
  const error = new Error(
1694
1694
  [
1695
- "Optional embedding backend is not installed.",
1695
+ "Required embedding backend is not installed.",
1696
1696
  "",
1697
- "Claude Memory Layer can run embeddings on CPU-only ONNX Runtime; CUDA is not required.",
1697
+ "Claude Memory Layer requires @huggingface/transformers for local semantic/vector embeddings.",
1698
+ "The backend runs on CPU-only ONNX Runtime; CUDA is not required.",
1698
1699
  "Reinstall globally with:",
1699
1700
  " ONNXRUNTIME_NODE_INSTALL_CUDA=skip npm install -g claude-memory-layer@latest",
1700
1701
  "",