n8n-nodes-tembory 1.0.53 → 1.0.54
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.
|
@@ -2237,7 +2237,7 @@ const invokeConnectedModelSummary = async (connectedLanguageModel, summaryInput,
|
|
|
2237
2237
|
const response = await connectedLanguageModel.invoke([
|
|
2238
2238
|
toBaseMessage({
|
|
2239
2239
|
role: 'user',
|
|
2240
|
-
content: `Update the Tembory active summary for the next agent turn. Return only concise Portuguese bullets, no JSON and no markdown table. Preserve IDs, dates, tool names, confirmed decisions, pending actions, constraints, contradictions, and do-not-repeat instructions. Prefer durable useful context over raw logs. Do not invent facts.\n\nContext:\n${summaryInput}`,
|
|
2240
|
+
content: `Update the Tembory active summary for the next agent turn. Return only concise Portuguese bullets, no JSON and no markdown table. Preserve IDs, dates, tool names, confirmed decisions, explicit pending actions, constraints, contradictions, and do-not-repeat instructions. Prefer durable useful context over raw logs. Do not invent facts. Treat inferred gaps or missing details as read-only observations, not action requirements, unless they are explicitly present in tool_state, action_ledger, working_memory.next_expected_action, or the current user message. Do not convert observations, guesses, or helpful suggestions into blocking pending actions.\n\nContext:\n${summaryInput}`,
|
|
2241
2241
|
}),
|
|
2242
2242
|
]);
|
|
2243
2243
|
return cleanModelSummaryText(response, Number(adv.connectedModelSummaryMaxChars || 1200));
|
package/package.json
CHANGED