n8n-nodes-tembory 1.0.18 → 1.0.19
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 +6 -1
- package/dist/nodes/Mem0/Mem0Memory.node.js +2 -2
- package/package.json +1 -1
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.0.
|
|
5
|
+
Versao atual: `1.0.19`.
|
|
6
|
+
|
|
7
|
+
## 1.0.19
|
|
8
|
+
|
|
9
|
+
- Amplia a deteccao de metaconversa para abreviacoes como `msg` e `msgs`.
|
|
10
|
+
- Adiciona regressao para "qual foia minha ultima msg?" com disponibilidade carregada, garantindo resposta pela mensagem anterior e nao pela agenda.
|
|
6
11
|
|
|
7
12
|
## 1.0.18
|
|
8
13
|
|
|
@@ -1147,9 +1147,9 @@ const normalizeIntentText = (value = '') => String(value || '')
|
|
|
1147
1147
|
const hasConfirmIntent = (value = '') => /\b(confirm\w*|confim\w*|cnfirm\w*|cofnirm\w*|ocnfi\w*|ocnfia\w*|fechar)\b/.test(normalizeIntentText(value));
|
|
1148
1148
|
const isConversationRecallQuery = (value = '') => {
|
|
1149
1149
|
const text = normalizeIntentText(value);
|
|
1150
|
-
return /\b(minha|qual|quais|o que|oq|voce|vc|lembra|lembrar|sabe|diga|fala)\b.{0,80}\b(ultima|ultimas|mensagem|mensagens|pergunta|perguntei|falei|disse)\b/.test(text)
|
|
1150
|
+
return /\b(minha|qual|quais|o que|oq|voce|vc|lembra|lembrar|sabe|diga|fala)\b.{0,80}\b(ultima|ultimas|msg|msgs|mensagem|mensagens|pergunta|perguntei|falei|disse)\b/.test(text)
|
|
1151
1151
|
|| /\b(o que|oq)\b.{0,30}\b(eu)\b.{0,30}\b(falei|disse|perguntei|mandei)\b/.test(text)
|
|
1152
|
-
|| /\b(nao|nao)\b.{0,20}\b(lembra|sabe)\b.{0,60}\b(mensagem|pergunta|falei|disse|perguntei)\b/.test(text);
|
|
1152
|
+
|| /\b(nao|nao)\b.{0,20}\b(lembra|sabe)\b.{0,60}\b(msg|msgs|mensagem|pergunta|falei|disse|perguntei)\b/.test(text);
|
|
1153
1153
|
};
|
|
1154
1154
|
const isAgendaStatusQuery = (value = '') => {
|
|
1155
1155
|
const text = normalizeIntentText(value);
|
package/package.json
CHANGED