n8n-nodes-tembory 1.0.15 → 1.0.17
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 +14 -1
- package/dist/nodes/Mem0/Mem0Memory.node.js +2 -58
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
Node de memoria operacional da Tembory para agentes de IA no n8n.
|
|
4
4
|
|
|
5
|
-
Versao atual: `1.0.
|
|
5
|
+
Versao atual: `1.0.17`.
|
|
6
|
+
|
|
7
|
+
## 1.0.17
|
|
8
|
+
|
|
9
|
+
- Oculta `Avançado Legado (Compatibilidade)` da interface normal para evitar duplicidade visual com `Configuração Tembory`.
|
|
10
|
+
- Mantem o campo legado no descriptor e no runtime para workflows antigos que ja salvaram parametros em `advanced`.
|
|
11
|
+
- A UI normal passa a mostrar apenas a configuracao agrupada.
|
|
12
|
+
|
|
13
|
+
## 1.0.16
|
|
14
|
+
|
|
15
|
+
- Corrige compatibilidade da UI agrupada com o processamento de parametros do n8n.
|
|
16
|
+
- Mantem `Configuração Tembory` como `fixedCollection`, mas remove o default estrutural pre-preenchido que podia quebrar a renderizacao do editor em alguns runtimes.
|
|
17
|
+
- Preserva os defaults de producao no runtime via `productionBalanced`, mesmo quando os grupos da UI ainda nao foram adicionados manualmente.
|
|
18
|
+
- Adiciona validacao local com `NodeHelpers.getNodeParameters` do `n8n-workflow` para evitar regressao de tela em branco.
|
|
6
19
|
|
|
7
20
|
## 1.0.15
|
|
8
21
|
|
|
@@ -2143,64 +2143,7 @@ class Mem0Memory {
|
|
|
2143
2143
|
name: 'advancedGroups',
|
|
2144
2144
|
type: 'fixedCollection',
|
|
2145
2145
|
placeholder: 'Adicionar Grupo',
|
|
2146
|
-
default:
|
|
2147
|
-
essentials: {
|
|
2148
|
-
operationPreset: 'productionBalanced',
|
|
2149
|
-
includeContextHeader: true,
|
|
2150
|
-
compactStateSections: true,
|
|
2151
|
-
contextMaxChars: 10000,
|
|
2152
|
-
includeToolHistory: true,
|
|
2153
|
-
includeToolResults: true,
|
|
2154
|
-
includeWorkingMemory: true,
|
|
2155
|
-
includeDecisionState: true,
|
|
2156
|
-
includeOperationalState: true,
|
|
2157
|
-
includeMemoryCompression: true,
|
|
2158
|
-
},
|
|
2159
|
-
intelligence: {
|
|
2160
|
-
includeProfileFacts: true,
|
|
2161
|
-
includeRecentMessages: true,
|
|
2162
|
-
recentMessagesLastN: 6,
|
|
2163
|
-
includeRecentHighlights: true,
|
|
2164
|
-
recentHighlightsMaxItems: 6,
|
|
2165
|
-
includeRelations: true,
|
|
2166
|
-
maxRelations: 10,
|
|
2167
|
-
includeActionLedger: true,
|
|
2168
|
-
includeEntityTimeline: true,
|
|
2169
|
-
},
|
|
2170
|
-
retrievalControls: {
|
|
2171
|
-
topK: 6,
|
|
2172
|
-
rerank: true,
|
|
2173
|
-
lastN: 8,
|
|
2174
|
-
alpha: 0.65,
|
|
2175
|
-
halfLifeHours: 48,
|
|
2176
|
-
maxReturn: 12,
|
|
2177
|
-
mmr: true,
|
|
2178
|
-
mmrLambda: 0.5,
|
|
2179
|
-
},
|
|
2180
|
-
summaryState: {
|
|
2181
|
-
includeSummary: true,
|
|
2182
|
-
includeConnectedModelSummary: true,
|
|
2183
|
-
summarySource: 'auto',
|
|
2184
|
-
connectedModelSummaryInputMaxChars: 4200,
|
|
2185
|
-
connectedModelSummaryMaxChars: 1200,
|
|
2186
|
-
includeActiveSummary: true,
|
|
2187
|
-
persistActiveSummary: true,
|
|
2188
|
-
activeSummaryMaxChars: 1800,
|
|
2189
|
-
activeSummaryRetentionDays: 30,
|
|
2190
|
-
enableTransientSummaryCache: true,
|
|
2191
|
-
transientSummaryCacheTTLSeconds: 300,
|
|
2192
|
-
transientSummaryCacheMaxItems: 50,
|
|
2193
|
-
summaryMaxFacts: 4,
|
|
2194
|
-
},
|
|
2195
|
-
diagnosticsAudit: {
|
|
2196
|
-
includeScores: false,
|
|
2197
|
-
includeDiagnostics: false,
|
|
2198
|
-
persistToolFactsToMem0: false,
|
|
2199
|
-
includeToolHistorySemanticFallback: false,
|
|
2200
|
-
toolHistoryLastN: 10,
|
|
2201
|
-
toolHistoryTTLSeconds: 3600,
|
|
2202
|
-
},
|
|
2203
|
-
},
|
|
2146
|
+
default: '',
|
|
2204
2147
|
typeOptions: {
|
|
2205
2148
|
multipleValues: false,
|
|
2206
2149
|
},
|
|
@@ -2318,6 +2261,7 @@ class Mem0Memory {
|
|
|
2318
2261
|
type: 'collection',
|
|
2319
2262
|
placeholder: 'Opções',
|
|
2320
2263
|
default: {},
|
|
2264
|
+
displayOptions: { hide: { '/payloadFormat': ['structured', 'auditText', 'auditJson', 'auditBlocks', 'singleSystemMessage'] } },
|
|
2321
2265
|
description: 'Campos legados preservados para workflows existentes. Para novas configuracoes, use Configuração Tembory.',
|
|
2322
2266
|
options: [
|
|
2323
2267
|
{ displayName: 'User ID', name: 'userId', type: 'string', default: '' },
|
package/package.json
CHANGED