LangChain - LangGraph for Stateful Agents
Given the following code snippet, what will be the output of printing the graph's nodes?
graph = MultiAgentGraph()
agent_a = Agent('A')
agent_b = Agent('B')
graph.add_node(agent_a)
graph.add_node(agent_b)
print(graph.nodes())