From 8b555e02f80b7deedb8d54f658a390e8e431feaf Mon Sep 17 00:00:00 2001 From: Henry Heng Date: Sun, 8 Oct 2023 01:55:45 +0100 Subject: [PATCH] Update UpstashRedisBackedChatMemory.ts camelCase node name --- .../UpstashRedisBackedChatMemory.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/components/nodes/memory/UpstashRedisBackedChatMemory/UpstashRedisBackedChatMemory.ts b/packages/components/nodes/memory/UpstashRedisBackedChatMemory/UpstashRedisBackedChatMemory.ts index 00d7697a..6b5fdf66 100644 --- a/packages/components/nodes/memory/UpstashRedisBackedChatMemory/UpstashRedisBackedChatMemory.ts +++ b/packages/components/nodes/memory/UpstashRedisBackedChatMemory/UpstashRedisBackedChatMemory.ts @@ -18,12 +18,12 @@ class UpstashRedisBackedChatMemory_Memory implements INode { constructor() { this.label = 'Upstash Redis-Backed Chat Memory' - this.name = 'UpstashRedisBackedChatMemory' + this.name = 'upstashRedisBackedChatMemory' this.version = 1.0 this.type = 'UpstashRedisBackedChatMemory' this.icon = 'upstash.svg' this.category = 'Memory' - this.description = 'Summarizes the conversation and stores the memory in upstash Redis server' + this.description = 'Summarizes the conversation and stores the memory in Upstash Redis server' this.baseClasses = [this.type, ...getBaseClasses(BufferMemory)] this.credential = { label: 'Connect Credential',