diff --git a/packages/components/nodes/chains/ConversationChain/ConversationChain.ts b/packages/components/nodes/chains/ConversationChain/ConversationChain.ts index 4e39ae6db..843e05fc6 100644 --- a/packages/components/nodes/chains/ConversationChain/ConversationChain.ts +++ b/packages/components/nodes/chains/ConversationChain/ConversationChain.ts @@ -96,7 +96,7 @@ class ConversationChain_Chains implements INode { return res?.response } else { const res = await chain.call({ input }) - return res?.text + return res?.response } } }