This commit is contained in:
Quanzheng Long
2025-09-18 16:40:12 -07:00
parent c85c3fd9a5
commit 8dad1dea60
+2 -2
View File
@@ -113,8 +113,8 @@ def test_parallel_nodes() -> None:
builder.add_edge("d", END)
graph = builder.compile()
print(graph.nodes)
print(graph.channels)
print("\n======nodes======\n", graph.nodes)
print("\n======channels======\n", graph.channels)
result = graph.invoke({"hello": "there"})
assert result["hello"] == "world-d"