claude-memory-layer 1.0.21 → 1.0.23

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.
@@ -2661,7 +2661,8 @@ var Embedder = class {
2661
2661
  }
2662
2662
  const output = await this.pipeline(text, {
2663
2663
  pooling: "mean",
2664
- normalize: true
2664
+ normalize: true,
2665
+ truncation: true
2665
2666
  });
2666
2667
  const vector = Array.from(output.data);
2667
2668
  return {
@@ -2685,7 +2686,8 @@ var Embedder = class {
2685
2686
  for (const text of batch) {
2686
2687
  const output = await this.pipeline(text, {
2687
2688
  pooling: "mean",
2688
- normalize: true
2689
+ normalize: true,
2690
+ truncation: true
2689
2691
  });
2690
2692
  const vector = Array.from(output.data);
2691
2693
  results.push({