n8n-nodes-tembory 1.0.39 → 1.0.40
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.
|
@@ -1126,7 +1126,7 @@ const applyOperationalPreset = (advanced = {}) => {
|
|
|
1126
1126
|
transientSummaryCacheTTLSeconds: 300,
|
|
1127
1127
|
compactStateSections: true,
|
|
1128
1128
|
useVectorMemory: false,
|
|
1129
|
-
persistBackendMemories:
|
|
1129
|
+
persistBackendMemories: true,
|
|
1130
1130
|
includeRecentMessageProbe: false,
|
|
1131
1131
|
includeToolLedgerProbe: false,
|
|
1132
1132
|
includeContextHeader: true,
|
|
@@ -2995,6 +2995,8 @@ class Mem0Memory {
|
|
|
2995
2995
|
if (!messages.length)
|
|
2996
2996
|
return;
|
|
2997
2997
|
const body = { messages };
|
|
2998
|
+
if (adv.useVectorMemory === false)
|
|
2999
|
+
body.infer = false;
|
|
2998
3000
|
body.user_id = key;
|
|
2999
3001
|
if (adv.agentId)
|
|
3000
3002
|
body.agent_id = String(adv.agentId);
|
package/package.json
CHANGED