update sessionId to optional

This commit is contained in:
Henry 2023-07-03 17:59:52 +01:00
parent 2a48485249
commit 479a6bc7eb
3 changed files with 6 additions and 3 deletions

View File

@ -36,7 +36,8 @@ class DynamoDb_Memory implements INode {
type: 'string', type: 'string',
description: 'if empty, chatId will be used automatically', description: 'if empty, chatId will be used automatically',
default: '', default: '',
additionalParams: true additionalParams: true,
optional: true
}, },
{ {
label: 'Region', label: 'Region',

View File

@ -36,7 +36,8 @@ class RedisBackedChatMemory_Memory implements INode {
type: 'string', type: 'string',
description: 'if empty, chatId will be used automatically', description: 'if empty, chatId will be used automatically',
default: '', default: '',
additionalParams: true additionalParams: true,
optional: true
}, },
{ {
label: 'Session Timeouts', label: 'Session Timeouts',

View File

@ -41,7 +41,8 @@ class ZepMemory_Memory implements INode {
type: 'string', type: 'string',
description: 'if empty, chatId will be used automatically', description: 'if empty, chatId will be used automatically',
default: '', default: '',
additionalParams: true additionalParams: true,
optional: true
}, },
{ {
label: 'Auto Summary Template', label: 'Auto Summary Template',