mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-29 07:01:04 +03:00
modify model limitation from BaseLanguageModel to BaseChatModel
This commit is contained in:
+3
-3
@@ -19,13 +19,13 @@ class ConversationSummaryMemory_Memory implements INode {
|
|||||||
this.type = 'ConversationSummaryMemory'
|
this.type = 'ConversationSummaryMemory'
|
||||||
this.icon = 'memory.svg'
|
this.icon = 'memory.svg'
|
||||||
this.category = 'Memory'
|
this.category = 'Memory'
|
||||||
this.description = 'Remembers previous conversational back and forths directly'
|
this.description = 'Summarizes the conversation and stores the current summary in memory'
|
||||||
this.baseClasses = [this.type, ...getBaseClasses(ConversationSummaryMemory)]
|
this.baseClasses = [this.type, ...getBaseClasses(ConversationSummaryMemory)]
|
||||||
this.inputs = [
|
this.inputs = [
|
||||||
{
|
{
|
||||||
label: 'Language Model',
|
label: 'Chat Model',
|
||||||
name: 'model',
|
name: 'model',
|
||||||
type: 'BaseLanguageModel'
|
type: 'BaseChatModel'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Memory Key',
|
label: 'Memory Key',
|
||||||
|
|||||||
Reference in New Issue
Block a user