diff --git a/packages/components/nodes/memory/RedisBackedChatMemory/RedisBackedChatMemory.ts b/packages/components/nodes/memory/RedisBackedChatMemory/RedisBackedChatMemory.ts index c60b9431fb2..2f4f3ca077b 100644 --- a/packages/components/nodes/memory/RedisBackedChatMemory/RedisBackedChatMemory.ts +++ b/packages/components/nodes/memory/RedisBackedChatMemory/RedisBackedChatMemory.ts @@ -53,7 +53,7 @@ class RedisBackedChatMemory_Memory implements INode { label: 'Session Timeouts', name: 'sessionTTL', type: 'number', - description: 'Omit this parameter to make sessions never expire', + description: 'Seconds till a session expires. If not specified, the session will never expire.', additionalParams: true, optional: true }, diff --git a/packages/components/nodes/memory/UpstashRedisBackedChatMemory/UpstashRedisBackedChatMemory.ts b/packages/components/nodes/memory/UpstashRedisBackedChatMemory/UpstashRedisBackedChatMemory.ts index 595803c52a2..4d9a6b8dc2b 100644 --- a/packages/components/nodes/memory/UpstashRedisBackedChatMemory/UpstashRedisBackedChatMemory.ts +++ b/packages/components/nodes/memory/UpstashRedisBackedChatMemory/UpstashRedisBackedChatMemory.ts @@ -80,7 +80,7 @@ class UpstashRedisBackedChatMemory_Memory implements INode { label: 'Session Timeouts', name: 'sessionTTL', type: 'number', - description: 'Omit this parameter to make sessions never expire', + description: 'Seconds till a session expires. If not specified, the session will never expire.', additionalParams: true, optional: true },