From c2c1ca916222c92e83627fd2e1541ed122e4d7ad Mon Sep 17 00:00:00 2001 From: Ryan Halliday Date: Wed, 8 Jan 2025 14:05:10 +1300 Subject: [PATCH] Slight Redis Memory description change to include units (#3824) Slight message change to include units --- .../nodes/memory/RedisBackedChatMemory/RedisBackedChatMemory.ts | 2 +- .../UpstashRedisBackedChatMemory.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/components/nodes/memory/RedisBackedChatMemory/RedisBackedChatMemory.ts b/packages/components/nodes/memory/RedisBackedChatMemory/RedisBackedChatMemory.ts index c60b9431..2f4f3ca0 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 595803c5..4d9a6b8d 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 },