mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-09-13 05:07:51 +02:00
Clearer breakdown
This commit is contained in:
@@ -1482,7 +1482,7 @@ class Pregel(PregelProtocol):
|
||||
**checkpoint_metadata,
|
||||
"source": "update",
|
||||
"step": step + 1,
|
||||
"writes": {k: v for k, v in valid_updates},
|
||||
"writes": {as_node: values for as_node, values in valid_updates},
|
||||
"parents": saved.metadata.get("parents", {}) if saved else {},
|
||||
},
|
||||
get_new_channel_versions(
|
||||
@@ -1820,7 +1820,7 @@ class Pregel(PregelProtocol):
|
||||
**checkpoint_metadata,
|
||||
"source": "update",
|
||||
"step": step + 1,
|
||||
"writes": {k: v for k, v in valid_updates},
|
||||
"writes": {as_node: values for as_node, values in valid_updates},
|
||||
"parents": saved.metadata.get("parents", {}) if saved else {},
|
||||
},
|
||||
get_new_channel_versions(
|
||||
|
||||
Reference in New Issue
Block a user