LangChain - LangGraph for Stateful Agents
Given this LangGraph snippet:
What happens if nodeB receives input 'no'?
nodeA.connect(nodeB) nodeB.connect(nodeC, condition=lambda x: x == 'yes') nodeB.connect(nodeD, condition=lambda x: x == 'no')
What happens if nodeB receives input 'no'?
