Skip to content

Commit 52d66df

Browse files
authored
docs(langgraph): update streaming guide links (#6314)
Updating links to the LangGraph streaming guide to point to the new documentation website for 1.0.
1 parent 4ec92f9 commit 52d66df

File tree

1 file changed

+4
-4
lines changed
  • libs/langgraph/langgraph/pregel

1 file changed

+4
-4
lines changed

libs/langgraph/langgraph/pregel/main.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2435,7 +2435,7 @@ def stream(
24352435
You can pass a list as the `stream_mode` parameter to stream multiple modes at once.
24362436
The streamed outputs will be tuples of `(mode, data)`.
24372437
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.
24392439
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.
24402440
output_keys: The keys to stream, defaults to all non-context channels.
24412441
interrupt_before: Nodes to interrupt before, defaults to all nodes in the graph.
@@ -2452,7 +2452,7 @@ def stream(
24522452
where `namespace` is a tuple with the path to the node where a subgraph is invoked,
24532453
e.g. `("parent_node:<task_id>", "child_node:<task_id>")`.
24542454
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.
24562456
24572457
Yields:
24582458
The output of each step in the graph. The output shape depends on the `stream_mode`.
@@ -2702,7 +2702,7 @@ async def astream(
27022702
You can pass a list as the `stream_mode` parameter to stream multiple modes at once.
27032703
The streamed outputs will be tuples of `(mode, data)`.
27042704
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.
27062706
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.
27072707
output_keys: The keys to stream, defaults to all non-context channels.
27082708
interrupt_before: Nodes to interrupt before, defaults to all nodes in the graph.
@@ -2719,7 +2719,7 @@ async def astream(
27192719
where `namespace` is a tuple with the path to the node where a subgraph is invoked,
27202720
e.g. `("parent_node:<task_id>", "child_node:<task_id>")`.
27212721
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.
27232723
27242724
Yields:
27252725
The output of each step in the graph. The output shape depends on the `stream_mode`.

0 commit comments

Comments
 (0)