update sessionId to optional
This commit is contained in:
parent
2a48485249
commit
479a6bc7eb
|
|
@ -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',
|
||||||
|
|
|
||||||
|
|
@ -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',
|
||||||
|
|
|
||||||
|
|
@ -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',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue