Update RedisCache.ts type

This commit is contained in:
Henry Heng
2023-10-08 12:08:51 +01:00
committed by GitHub
parent 643adb5979
commit abce51353b
+2 -2
View File
@@ -15,10 +15,10 @@ class RedisCache implements INode {
credential: INodeParams
constructor() {
this.label = 'Redis LLM Cache'
this.label = 'Redis Cache'
this.name = 'redisCache'
this.version = 1.0
this.type = 'Cache'
this.type = 'RedisCache'
this.icon = 'redis.svg'
this.category = 'Cache'
this.baseClasses = [this.type, ...getBaseClasses(LangchainRedisCache)]