@xdarkicex/openclaw-memory-libravdb 1.4.29 → 1.4.30
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.
- package/dist/memory-runtime.js +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/memory-runtime.js
CHANGED
|
@@ -65,7 +65,7 @@ function createMemorySearchManager(getRpc, cfg, defaults, initialStatus) {
|
|
|
65
65
|
const k = normalizePositiveInteger(params.k, params.limit, params.maxResults, params.topK, cfg.topK, 8);
|
|
66
66
|
const minScore = normalizeNumber(params.minScore);
|
|
67
67
|
const rpc = await getRpc();
|
|
68
|
-
const result = dreamQuery.active
|
|
68
|
+
const result = dreamQuery.active && cfg.crossSessionRecall !== false
|
|
69
69
|
? await rpc.call("search_text", {
|
|
70
70
|
collection: resolveDreamCollection(userId),
|
|
71
71
|
text: queryText,
|
package/openclaw.plugin.json
CHANGED