update sessionId to optional
This commit is contained in:
parent
2a48485249
commit
479a6bc7eb
|
|
@ -36,7 +36,8 @@ class DynamoDb_Memory implements INode {
|
|||
type: 'string',
|
||||
description: 'if empty, chatId will be used automatically',
|
||||
default: '',
|
||||
additionalParams: true
|
||||
additionalParams: true,
|
||||
optional: true
|
||||
},
|
||||
{
|
||||
label: 'Region',
|
||||
|
|
|
|||
|
|
@ -36,7 +36,8 @@ class RedisBackedChatMemory_Memory implements INode {
|
|||
type: 'string',
|
||||
description: 'if empty, chatId will be used automatically',
|
||||
default: '',
|
||||
additionalParams: true
|
||||
additionalParams: true,
|
||||
optional: true
|
||||
},
|
||||
{
|
||||
label: 'Session Timeouts',
|
||||
|
|
|
|||
|
|
@ -41,7 +41,8 @@ class ZepMemory_Memory implements INode {
|
|||
type: 'string',
|
||||
description: 'if empty, chatId will be used automatically',
|
||||
default: '',
|
||||
additionalParams: true
|
||||
additionalParams: true,
|
||||
optional: true
|
||||
},
|
||||
{
|
||||
label: 'Auto Summary Template',
|
||||
|
|
|
|||
Loading…
Reference in New Issue