Merge pull request #203 from FlowiseAI/feature/ConversationChain

Bugfix/ConversationalChain output response
pull/205/head
Henry Heng 2023-05-27 13:39:44 +01:00 committed by GitHub
commit 57b8d19275
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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
}
}
}