You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libs/langgraph/langgraph/pregel/main.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -2435,7 +2435,7 @@ def stream(
2435
2435
You can pass a list as the `stream_mode` parameter to stream multiple modes at once.
2436
2436
The streamed outputs will be tuples of `(mode, data)`.
2437
2437
2438
-
See [LangGraph streaming guide](https://langchain-ai.github.io/langgraph/how-tos/streaming/) for more details.
2438
+
See [LangGraph streaming guide](https://docs.langchain.com/oss/python/langgraph/streaming) for more details.
2439
2439
print_mode: Accepts the same values as `stream_mode`, but only prints the output to the console, for debugging purposes. Does not affect the output of the graph in any way.
2440
2440
output_keys: The keys to stream, defaults to all non-context channels.
2441
2441
interrupt_before: Nodes to interrupt before, defaults to all nodes in the graph.
@@ -2452,7 +2452,7 @@ def stream(
2452
2452
where `namespace` is a tuple with the path to the node where a subgraph is invoked,
2453
2453
e.g. `("parent_node:<task_id>", "child_node:<task_id>")`.
2454
2454
2455
-
See [LangGraph streaming guide](https://langchain-ai.github.io/langgraph/how-tos/streaming/) for more details.
2455
+
See [LangGraph streaming guide](https://docs.langchain.com/oss/python/langgraph/streaming) for more details.
2456
2456
2457
2457
Yields:
2458
2458
The output of each step in the graph. The output shape depends on the `stream_mode`.
@@ -2702,7 +2702,7 @@ async def astream(
2702
2702
You can pass a list as the `stream_mode` parameter to stream multiple modes at once.
2703
2703
The streamed outputs will be tuples of `(mode, data)`.
2704
2704
2705
-
See [LangGraph streaming guide](https://langchain-ai.github.io/langgraph/how-tos/streaming/) for more details.
2705
+
See [LangGraph streaming guide](https://docs.langchain.com/oss/python/langgraph/streaming) for more details.
2706
2706
print_mode: Accepts the same values as `stream_mode`, but only prints the output to the console, for debugging purposes. Does not affect the output of the graph in any way.
2707
2707
output_keys: The keys to stream, defaults to all non-context channels.
2708
2708
interrupt_before: Nodes to interrupt before, defaults to all nodes in the graph.
@@ -2719,7 +2719,7 @@ async def astream(
2719
2719
where `namespace` is a tuple with the path to the node where a subgraph is invoked,
2720
2720
e.g. `("parent_node:<task_id>", "child_node:<task_id>")`.
2721
2721
2722
-
See [LangGraph streaming guide](https://langchain-ai.github.io/langgraph/how-tos/streaming/) for more details.
2722
+
See [LangGraph streaming guide](https://docs.langchain.com/oss/python/langgraph/streaming) for more details.
2723
2723
2724
2724
Yields:
2725
2725
The output of each step in the graph. The output shape depends on the `stream_mode`.
0 commit comments