n8n-nodes-tembory 1.0.15 → 1.0.16
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 +8 -1
- package/dist/nodes/Mem0/Mem0Memory.node.js +1 -58
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,14 @@
|
|
|
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.16`.
|
|
6
|
+
|
|
7
|
+
## 1.0.16
|
|
8
|
+
|
|
9
|
+
- Corrige compatibilidade da UI agrupada com o processamento de parametros do n8n.
|
|
10
|
+
- Mantem `Configuração Tembory` como `fixedCollection`, mas remove o default estrutural pre-preenchido que podia quebrar a renderizacao do editor em alguns runtimes.
|
|
11
|
+
- Preserva os defaults de producao no runtime via `productionBalanced`, mesmo quando os grupos da UI ainda nao foram adicionados manualmente.
|
|
12
|
+
- Adiciona validacao local com `NodeHelpers.getNodeParameters` do `n8n-workflow` para evitar regressao de tela em branco.
|
|
6
13
|
|
|
7
14
|
## 1.0.15
|
|
8
15
|
|
|
@@ -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
|
},
|
package/package.json
CHANGED