Update UpstashRedisCache.ts type

This commit is contained in:
Henry Heng
2023-10-08 12:09:16 +01:00
committed by GitHub
parent abce51353b
commit 12159f6730
@@ -14,10 +14,10 @@ class UpstashRedisCache implements INode {
credential: INodeParams
constructor() {
this.label = 'Upstash Redis LLM Cache'
this.label = 'Upstash Redis Cache'
this.name = 'upstashRedisCache'
this.version = 1.0
this.type = 'Cache'
this.type = 'UpstashRedisCache'
this.icon = 'upstash.png'
this.category = 'Cache'
this.baseClasses = [this.type, ...getBaseClasses(LangchainUpstashRedisCache)]