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