n8n-nodes-tembory 1.0.56 → 1.0.58

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.
@@ -2645,7 +2645,7 @@ class Mem0Memory {
2645
2645
  icon: 'file:tembory-brain.svg',
2646
2646
  group: ['transform'],
2647
2647
  version: 1,
2648
- description: 'Advanced memory for AI agents with profile, tools, timeline, graph and semantic context',
2648
+ description: 'Operational memory for AI agents with profile, tools, actions, summaries and decision state',
2649
2649
  defaults: {
2650
2650
  name: 'Tembory',
2651
2651
  },
@@ -2656,19 +2656,12 @@ class Mem0Memory {
2656
2656
  type: n8n_workflow_1.NodeConnectionTypes.AiLanguageModel,
2657
2657
  required: false,
2658
2658
  },
2659
- {
2660
- displayName: 'Embed',
2661
- maxConnections: 1,
2662
- type: n8n_workflow_1.NodeConnectionTypes.AiEmbedding,
2663
- required: false,
2664
- },
2665
2659
  ],
2666
2660
  outputs: [n8n_workflow_1.NodeConnectionTypes.AiMemory],
2667
2661
  outputNames: ['Mem'],
2668
2662
  builderHint: {
2669
2663
  inputs: {
2670
2664
  ai_languageModel: { required: false },
2671
- ai_embedding: { required: false },
2672
2665
  },
2673
2666
  },
2674
2667
  credentials: [
@@ -2706,11 +2699,9 @@ class Mem0Memory {
2706
2699
  options: [
2707
2700
  { name: 'Operacional Estruturado', value: 'basic', description: 'Usa estado da thread, histórico de tools, mensagens recentes e resumo ativo, sem busca vetorial' },
2708
2701
  { name: 'Resumo', value: 'summary', description: 'Retorna um resumo simples em texto' },
2709
- { name: 'Semântico (v1)', value: 'semantic', description: 'Busca semântica usando o endpoint v1 com opção de rerank' },
2710
- { name: 'Semântico (v2)', value: 'semanticV2', description: 'Busca semântica avançada com filtros (v2)' },
2711
- { name: 'Híbrido', value: 'hybrid', description: 'Combina memórias recentes com busca semântica (v2) usando time-decay e pontuação híbrida' },
2712
2702
  ],
2713
2703
  default: 'basic',
2704
+ description: 'Modos expostos para produção. Workflows antigos com semantic/hybrid continuam compatíveis, mas são tratados como operacional estruturado enquanto a memória vetorial estiver desligada.',
2714
2705
  },
2715
2706
  {
2716
2707
  displayName: 'Consulta',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "n8n-nodes-tembory",
3
- "version": "1.0.56",
4
- "description": "Tembory node for n8n AI Agents with profile, tools, timeline, graph and semantic memory",
3
+ "version": "1.0.58",
4
+ "description": "Tembory node for n8n AI Agents with operational memory, tool history and decision state",
5
5
  "license": "MIT",
6
6
  "homepage": "https://tembory.com",
7
7
  "author": {
@@ -53,8 +53,8 @@
53
53
  "ai",
54
54
  "llm",
55
55
  "long-term-memory",
56
- "semantic-search",
57
- "vector-database"
56
+ "operational-memory",
57
+ "tool-history"
58
58
  ],
59
59
  "devDependencies": {
60
60
  "@types/node": "^18.16.0",