LangChain - LangGraph for Stateful Agents
What is the issue with this Langchain multi-agent graph code?
graph = MultiAgentGraph()
agent1 = Agent('1')
agent2 = Agent('2')
graph.add_node(agent1)
graph.add_edge(agent1, agent2)