You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constsystemMessage=`The following is a friendly conversation between a human and an AI. The AI is talkative and provides lots of specific details from its context. If the AI does not know the answer to a question, it truthfully says it does not know.`
12
+
letsystemMessage=`The following is a friendly conversation between a human and an AI. The AI is talkative and provides lots of specific details from its context. If the AI does not know the answer to a question, it truthfully says it does not know.`
11
13
12
14
classConversationChain_ChainsimplementsINode{
13
15
label: string
@@ -38,6 +40,14 @@ class ConversationChain_Chains implements INode {
38
40
name: 'memory',
39
41
type: 'BaseMemory'
40
42
},
43
+
{
44
+
label: 'Document',
45
+
name: 'document',
46
+
type: 'Document',
47
+
description: 'Include whole document into the context window',
48
+
optional: true,
49
+
list: true
50
+
},
41
51
{
42
52
label: 'System Message',
43
53
name: 'systemMessagePrompt',
@@ -54,6 +64,20 @@ class ConversationChain_Chains implements INode {
0 commit comments