yarn lint

This commit is contained in:
Henry
2023-07-22 02:27:52 +01:00
parent 49c7ae718f
commit d4d4f0c8c2
3 changed files with 30 additions and 18 deletions
+1 -1
View File
@@ -728,7 +728,7 @@ export const isFlowValidForStream = (reactFlowNodes: IReactFlowNode[], endingNod
isValidChainOrAgent = !blacklistChains.includes(endingNodeData.name)
} else if (endingNodeData.category === 'Agents') {
// Agent that are available to stream
const whitelistAgents = ['openAIFunctionAgent']
const whitelistAgents = ['openAIFunctionAgent', 'csvAgent']
isValidChainOrAgent = whitelistAgents.includes(endingNodeData.name)
}