n8n-nodes-tembory 1.2.0 → 1.2.1
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/README.md
CHANGED
|
@@ -2,7 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Node de memoria operacional da Tembory para agentes de IA no n8n.
|
|
4
4
|
|
|
5
|
-
Versao atual: `1.2.
|
|
5
|
+
Versao atual: `1.2.1`.
|
|
6
|
+
|
|
7
|
+
## 1.2.1
|
|
8
|
+
|
|
9
|
+
- Remove duplicacao visual no output do `saveContext`: o resumo fica apenas em `memorySummary`, sem repetir os mesmos campos no topo do JSON.
|
|
10
|
+
- Mantem `toolLog`, `toolEvents`, conversa, input/output e captura de tools dentro de `memorySummary` para debug humano organizado.
|
|
6
11
|
|
|
7
12
|
## 1.2.0
|
|
8
13
|
|
|
@@ -4555,7 +4555,7 @@ class TemboryMemory {
|
|
|
4555
4555
|
}
|
|
4556
4556
|
const compactPayload = compactMemoryEventPayload(payload);
|
|
4557
4557
|
this.addOutputData(n8n_workflow_1.NodeConnectionTypes.AiMemory, index, [
|
|
4558
|
-
[{ json: { action, visualSchema: VISUAL_SCHEMA_VERSION, memorySummary: compactPayload
|
|
4558
|
+
[{ json: { action, visualSchema: VISUAL_SCHEMA_VERSION, memorySummary: compactPayload } }],
|
|
4559
4559
|
]);
|
|
4560
4560
|
};
|
|
4561
4561
|
const memory = {
|
package/package.json
CHANGED