@xdarkicex/openclaw-memory-libravdb 1.4.20 → 1.4.21

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.
@@ -723,7 +723,6 @@ export function buildContextEngineFactory(runtime, cfg, recallCache, logger = co
723
723
  sessionKey: args.sessionKey,
724
724
  userId,
725
725
  messages,
726
- prePromptMessageCount: args.prePromptMessageCount,
727
726
  isHeartbeat: args.isHeartbeat,
728
727
  });
729
728
  await performAfterTurnPredictiveCompaction({
@@ -735,9 +734,11 @@ export function buildContextEngineFactory(runtime, cfg, recallCache, logger = co
735
734
  }
736
735
  const rpc = await runtime.getRpc();
737
736
  const result = await rpc.call("after_turn_kernel", {
738
- ...args,
737
+ sessionId: args.sessionId,
738
+ sessionKey: args.sessionKey,
739
739
  userId,
740
740
  messages,
741
+ isHeartbeat: args.isHeartbeat,
741
742
  });
742
743
  await performAfterTurnPredictiveCompaction({
743
744
  sessionId: args.sessionId,
@@ -2,7 +2,7 @@
2
2
  "id": "libravdb-memory",
3
3
  "name": "LibraVDB Memory",
4
4
  "description": "Persistent vector memory with three-tier hybrid scoring",
5
- "version": "1.4.20",
5
+ "version": "1.4.21",
6
6
  "kind": [
7
7
  "memory",
8
8
  "context-engine"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xdarkicex/openclaw-memory-libravdb",
3
- "version": "1.4.20",
3
+ "version": "1.4.21",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",