claude-memory-layer 1.0.22 → 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.
@@ -2666,7 +2666,8 @@ var Embedder = class {
2666
2666
  }
2667
2667
  const output = await this.pipeline(text, {
2668
2668
  pooling: "mean",
2669
- normalize: true
2669
+ normalize: true,
2670
+ truncation: true
2670
2671
  });
2671
2672
  const vector = Array.from(output.data);
2672
2673
  return {
@@ -2690,7 +2691,8 @@ var Embedder = class {
2690
2691
  for (const text of batch) {
2691
2692
  const output = await this.pipeline(text, {
2692
2693
  pooling: "mean",
2693
- normalize: true
2694
+ normalize: true,
2695
+ truncation: true
2694
2696
  });
2695
2697
  const vector = Array.from(output.data);
2696
2698
  results.push({