mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
feat(editor): Rename 'Window Buffer Memory' to 'Simple Memory' (#13477)
This commit is contained in:
parent
a60d106ebb
commit
819fc2da63
|
@ -52,7 +52,7 @@ export const PIPEDRIVE_NODE_NAME = 'Pipedrive';
|
||||||
export const HTTP_REQUEST_NODE_NAME = 'HTTP Request';
|
export const HTTP_REQUEST_NODE_NAME = 'HTTP Request';
|
||||||
export const AGENT_NODE_NAME = 'AI Agent';
|
export const AGENT_NODE_NAME = 'AI Agent';
|
||||||
export const BASIC_LLM_CHAIN_NODE_NAME = 'Basic LLM Chain';
|
export const BASIC_LLM_CHAIN_NODE_NAME = 'Basic LLM Chain';
|
||||||
export const AI_MEMORY_WINDOW_BUFFER_MEMORY_NODE_NAME = 'Window Buffer Memory';
|
export const AI_MEMORY_WINDOW_BUFFER_MEMORY_NODE_NAME = 'Simple Memory';
|
||||||
export const AI_TOOL_CALCULATOR_NODE_NAME = 'Calculator';
|
export const AI_TOOL_CALCULATOR_NODE_NAME = 'Calculator';
|
||||||
export const AI_TOOL_CODE_NODE_NAME = 'Code Tool';
|
export const AI_TOOL_CODE_NODE_NAME = 'Code Tool';
|
||||||
export const AI_TOOL_WIKIPEDIA_NODE_NAME = 'Wikipedia';
|
export const AI_TOOL_WIKIPEDIA_NODE_NAME = 'Wikipedia';
|
||||||
|
|
|
@ -75,7 +75,7 @@ class MemoryChatBufferSingleton {
|
||||||
|
|
||||||
export class MemoryBufferWindow implements INodeType {
|
export class MemoryBufferWindow implements INodeType {
|
||||||
description: INodeTypeDescription = {
|
description: INodeTypeDescription = {
|
||||||
displayName: 'Window Buffer Memory (easiest)',
|
displayName: 'Simple Memory',
|
||||||
name: 'memoryBufferWindow',
|
name: 'memoryBufferWindow',
|
||||||
icon: 'fa:database',
|
icon: 'fa:database',
|
||||||
iconColor: 'black',
|
iconColor: 'black',
|
||||||
|
@ -83,7 +83,7 @@ export class MemoryBufferWindow implements INodeType {
|
||||||
version: [1, 1.1, 1.2, 1.3],
|
version: [1, 1.1, 1.2, 1.3],
|
||||||
description: 'Stores in n8n memory, so no credentials required',
|
description: 'Stores in n8n memory, so no credentials required',
|
||||||
defaults: {
|
defaults: {
|
||||||
name: 'Window Buffer Memory',
|
name: 'Simple Memory',
|
||||||
},
|
},
|
||||||
codex: {
|
codex: {
|
||||||
categories: ['AI'],
|
categories: ['AI'],
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
"sessionKey": "={{ $json.sessionId }}"
|
"sessionKey": "={{ $json.sessionId }}"
|
||||||
},
|
},
|
||||||
"id": "0a68a59a-8ab6-4fa5-a1ea-b7f99a93109b",
|
"id": "0a68a59a-8ab6-4fa5-a1ea-b7f99a93109b",
|
||||||
"name": "Window Buffer Memory",
|
"name": "Simple Memory",
|
||||||
"type": "@n8n/n8n-nodes-langchain.memoryBufferWindow",
|
"type": "@n8n/n8n-nodes-langchain.memoryBufferWindow",
|
||||||
"typeVersion": 1,
|
"typeVersion": 1,
|
||||||
"position": [640, 540]
|
"position": [640, 540]
|
||||||
|
@ -122,7 +122,7 @@
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"Window Buffer Memory": {
|
"Simple Memory": {
|
||||||
"ai_memory": [
|
"ai_memory": [
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
"sessionKey": "={{ $json.sessionId }}"
|
"sessionKey": "={{ $json.sessionId }}"
|
||||||
},
|
},
|
||||||
"id": "b416df7b-4802-462f-8f74-f0a71dc4c0be",
|
"id": "b416df7b-4802-462f-8f74-f0a71dc4c0be",
|
||||||
"name": "Window Buffer Memory",
|
"name": "Simple Memory",
|
||||||
"type": "@n8n/n8n-nodes-langchain.memoryBufferWindow",
|
"type": "@n8n/n8n-nodes-langchain.memoryBufferWindow",
|
||||||
"typeVersion": 1,
|
"typeVersion": 1,
|
||||||
"position": [340, 540]
|
"position": [340, 540]
|
||||||
|
@ -66,7 +66,7 @@
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"Window Buffer Memory": {
|
"Simple Memory": {
|
||||||
"ai_memory": [
|
"ai_memory": [
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue