mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 17:01:00 +03:00
- update marketplaces
- add version to nodes and credentials - hover over node actions
This commit is contained in:
@@ -5,6 +5,7 @@ import { BufferMemory } from 'langchain/memory'
|
||||
class BufferMemory_Memory implements INode {
|
||||
label: string
|
||||
name: string
|
||||
version: number
|
||||
description: string
|
||||
type: string
|
||||
icon: string
|
||||
@@ -15,6 +16,7 @@ class BufferMemory_Memory implements INode {
|
||||
constructor() {
|
||||
this.label = 'Buffer Memory'
|
||||
this.name = 'bufferMemory'
|
||||
this.version = 1.0
|
||||
this.type = 'BufferMemory'
|
||||
this.icon = 'memory.svg'
|
||||
this.category = 'Memory'
|
||||
|
||||
@@ -5,6 +5,7 @@ import { BufferWindowMemory, BufferWindowMemoryInput } from 'langchain/memory'
|
||||
class BufferWindowMemory_Memory implements INode {
|
||||
label: string
|
||||
name: string
|
||||
version: number
|
||||
description: string
|
||||
type: string
|
||||
icon: string
|
||||
@@ -15,6 +16,7 @@ class BufferWindowMemory_Memory implements INode {
|
||||
constructor() {
|
||||
this.label = 'Buffer Window Memory'
|
||||
this.name = 'bufferWindowMemory'
|
||||
this.version = 1.0
|
||||
this.type = 'BufferWindowMemory'
|
||||
this.icon = 'memory.svg'
|
||||
this.category = 'Memory'
|
||||
|
||||
+2
@@ -6,6 +6,7 @@ import { BaseLanguageModel } from 'langchain/base_language'
|
||||
class ConversationSummaryMemory_Memory implements INode {
|
||||
label: string
|
||||
name: string
|
||||
version: number
|
||||
description: string
|
||||
type: string
|
||||
icon: string
|
||||
@@ -16,6 +17,7 @@ class ConversationSummaryMemory_Memory implements INode {
|
||||
constructor() {
|
||||
this.label = 'Conversation Summary Memory'
|
||||
this.name = 'conversationSummaryMemory'
|
||||
this.version = 1.0
|
||||
this.type = 'ConversationSummaryMemory'
|
||||
this.icon = 'memory.svg'
|
||||
this.category = 'Memory'
|
||||
|
||||
@@ -5,6 +5,7 @@ import { BufferMemory } from 'langchain/memory'
|
||||
class DynamoDb_Memory implements INode {
|
||||
label: string
|
||||
name: string
|
||||
version: number
|
||||
description: string
|
||||
type: string
|
||||
icon: string
|
||||
@@ -16,6 +17,7 @@ class DynamoDb_Memory implements INode {
|
||||
constructor() {
|
||||
this.label = 'DynamoDB Chat Memory'
|
||||
this.name = 'DynamoDBChatMemory'
|
||||
this.version = 1.0
|
||||
this.type = 'DynamoDBChatMemory'
|
||||
this.icon = 'dynamodb.svg'
|
||||
this.category = 'Memory'
|
||||
|
||||
@@ -6,6 +6,7 @@ import { MotorheadMemory, MotorheadMemoryInput } from 'langchain/memory'
|
||||
class MotorMemory_Memory implements INode {
|
||||
label: string
|
||||
name: string
|
||||
version: number
|
||||
description: string
|
||||
type: string
|
||||
icon: string
|
||||
@@ -17,6 +18,7 @@ class MotorMemory_Memory implements INode {
|
||||
constructor() {
|
||||
this.label = 'Motorhead Memory'
|
||||
this.name = 'motorheadMemory'
|
||||
this.version = 1.0
|
||||
this.type = 'MotorheadMemory'
|
||||
this.icon = 'motorhead.png'
|
||||
this.category = 'Memory'
|
||||
|
||||
@@ -8,6 +8,7 @@ import { createClient } from 'redis'
|
||||
class RedisBackedChatMemory_Memory implements INode {
|
||||
label: string
|
||||
name: string
|
||||
version: number
|
||||
description: string
|
||||
type: string
|
||||
icon: string
|
||||
@@ -18,6 +19,7 @@ class RedisBackedChatMemory_Memory implements INode {
|
||||
constructor() {
|
||||
this.label = 'Redis-Backed Chat Memory'
|
||||
this.name = 'RedisBackedChatMemory'
|
||||
this.version = 1.0
|
||||
this.type = 'RedisBackedChatMemory'
|
||||
this.icon = 'redis.svg'
|
||||
this.category = 'Memory'
|
||||
|
||||
@@ -7,6 +7,7 @@ import { ICommonObject } from '../../../src'
|
||||
class ZepMemory_Memory implements INode {
|
||||
label: string
|
||||
name: string
|
||||
version: number
|
||||
description: string
|
||||
type: string
|
||||
icon: string
|
||||
@@ -18,6 +19,7 @@ class ZepMemory_Memory implements INode {
|
||||
constructor() {
|
||||
this.label = 'Zep Memory'
|
||||
this.name = 'ZepMemory'
|
||||
this.version = 1.0
|
||||
this.type = 'ZepMemory'
|
||||
this.icon = 'zep.png'
|
||||
this.category = 'Memory'
|
||||
@@ -58,7 +60,6 @@ class ZepMemory_Memory implements INode {
|
||||
name: 'k',
|
||||
type: 'number',
|
||||
default: '10',
|
||||
step: 1,
|
||||
description: 'Window of size k to surface the last k back-and-forths to use as memory.'
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user