mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 17:01:00 +03:00
add description
This commit is contained in:
@@ -19,6 +19,7 @@ class InMemoryCache implements INode {
|
||||
this.name = 'inMemoryCache'
|
||||
this.version = 1.0
|
||||
this.type = 'InMemoryCache'
|
||||
this.description = 'Cache LLM response in memory, will be cleared once app restarted'
|
||||
this.icon = 'inmemorycache.png'
|
||||
this.category = 'Cache'
|
||||
this.baseClasses = [this.type, ...getBaseClasses(InMemoryCacheExtended)]
|
||||
|
||||
@@ -19,6 +19,7 @@ class MomentoCache implements INode {
|
||||
this.name = 'momentoCache'
|
||||
this.version = 1.0
|
||||
this.type = 'MomentoCache'
|
||||
this.description = 'Cache LLM response using Momento, a distributed, serverless cache'
|
||||
this.icon = 'momento.png'
|
||||
this.category = 'Cache'
|
||||
this.baseClasses = [this.type, ...getBaseClasses(LangchainMomentoCache)]
|
||||
|
||||
@@ -19,6 +19,7 @@ class RedisCache implements INode {
|
||||
this.name = 'redisCache'
|
||||
this.version = 1.0
|
||||
this.type = 'RedisCache'
|
||||
this.description = 'Cache LLM response in Redis, useful for sharing cache across multiple processes or servers'
|
||||
this.icon = 'redis.svg'
|
||||
this.category = 'Cache'
|
||||
this.baseClasses = [this.type, ...getBaseClasses(LangchainRedisCache)]
|
||||
|
||||
@@ -18,6 +18,7 @@ class UpstashRedisCache implements INode {
|
||||
this.name = 'upstashRedisCache'
|
||||
this.version = 1.0
|
||||
this.type = 'UpstashRedisCache'
|
||||
this.description = 'Cache LLM response in Upstash Redis, serverless data for Redis and Kafka'
|
||||
this.icon = 'upstash.png'
|
||||
this.category = 'Cache'
|
||||
this.baseClasses = [this.type, ...getBaseClasses(LangchainUpstashRedisCache)]
|
||||
|
||||
Reference in New Issue
Block a user