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.
@@ -1805,9 +1805,10 @@ function isMissingTransformersDependencyError(error) {
1805
1805
  function createEmbeddingBackendUnavailableError(cause) {
1806
1806
  const error = new Error(
1807
1807
  [
1808
- "Optional embedding backend is not installed.",
1808
+ "Required embedding backend is not installed.",
1809
1809
  "",
1810
- "Claude Memory Layer can run embeddings on CPU-only ONNX Runtime; CUDA is not required.",
1810
+ "Claude Memory Layer requires @huggingface/transformers for local semantic/vector embeddings.",
1811
+ "The backend runs on CPU-only ONNX Runtime; CUDA is not required.",
1811
1812
  "Reinstall globally with:",
1812
1813
  " ONNXRUNTIME_NODE_INSTALL_CUDA=skip npm install -g claude-memory-layer@latest",
1813
1814
  "",