LangChain - LangGraph for Stateful Agents
Given this routing setup:
Which node will the graph route to?
conditions = [lambda ctx: ctx['age'] > 18, lambda ctx: ctx['age'] <= 18]
routes = ['adult_node', 'child_node']
ctx = {'age': 20}
Which node will the graph route to?
