diff --git a/src/oss/langgraph/use-graph-api.mdx b/src/oss/langgraph/use-graph-api.mdx index 1eae548f00..9997867708 100644 --- a/src/oss/langgraph/use-graph-api.mdx +++ b/src/oss/langgraph/use-graph-api.mdx @@ -595,14 +595,14 @@ print(f"Output of graph invocation: {response}") ``` Entered node `node_1`: - ut: {'a': 'set at start'}. - urned: {'private_data': 'set by node_1'} + Input: {'a': 'set at start'}. + Returned: {'private_data': 'set by node_1'} Entered node `node_2`: - ut: {'private_data': 'set by node_1'}. - urned: {'a': 'set by node_2'} + Input: {'private_data': 'set by node_1'}. + Returned: {'a': 'set by node_2'} Entered node `node_3`: - ut: {'a': 'set by node_2'}. - urned: {'a': 'set by node_3'} + Input: {'a': 'set by node_2'}. + Returned: {'a': 'set by node_3'} Output of graph invocation: {'a': 'set by node_3'} ```