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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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)]