diff --git a/docs/docs/agents/overview.md b/docs/docs/agents/overview.md index 6065da9eb..9112958bd 100644 --- a/docs/docs/agents/overview.md +++ b/docs/docs/agents/overview.md @@ -29,7 +29,7 @@ LangGraph includes several capabilities essential for building robust, productio - [**Memory integration**](./memory.md): Native support for *short-term* (session-based) and *long-term* (persistent across sessions) memory, enabling stateful behaviors in chatbots and assistants. - [**Human-in-the-loop control**](./human-in-the-loop.md): Execution can pause *indefinitely* to await human feedback—unlike websocket-based solutions limited to real-time interaction. This enables asynchronous approval, correction, or intervention at any point in the workflow. -- [**Streaming support**](./streaming.md): Real-time streaming of agent state, model tokens, tool outputs, or combined streams. +- [**Streaming support**](../how-tos/streaming.md): Real-time streaming of agent state, model tokens, tool outputs, or combined streams. - [**Deployment tooling**](./deployment.md): Includes infrastructure-free deployment tools. [**LangGraph Platform**](https://langchain-ai.github.io/langgraph/concepts/langgraph_platform/) supports testing, debugging, and deployment. - **[Studio](https://langchain-ai.github.io/langgraph/concepts/langgraph_studio/)**: A visual IDE for inspecting and debugging workflows. - Supports multiple [**deployment options**](https://langchain-ai.github.io/langgraph/concepts/deployment_options.md) for production. diff --git a/docs/docs/agents/run_agents.md b/docs/docs/agents/run_agents.md index 61dcac308..0b4942f06 100644 --- a/docs/docs/agents/run_agents.md +++ b/docs/docs/agents/run_agents.md @@ -109,7 +109,7 @@ Streaming is available in both sync and async modes: !!! tip - For full details, see the [streaming guide](./streaming.md). + For full details, see the [streaming guide](../how-tos/streaming.md). ## Max iterations diff --git a/docs/docs/concepts/streaming.md b/docs/docs/concepts/streaming.md index 7cc7057fa..5a212ddd1 100644 --- a/docs/docs/concepts/streaming.md +++ b/docs/docs/concepts/streaming.md @@ -18,6 +18,6 @@ There are three main categories of data you can stream: - [**Stream LLM tokens**](../how-tos/streaming.md#messages) — capture token streams from anywhere: inside nodes, subgraphs, or tools. - [**Emit progress notifications from tools**](../how-tos/streaming.md#stream-custom-data) — send custom updates or progress signals directly from tool functions. -- [**Stream from subgraphs**](../how-tos/streaming.md#subgraphs) — include outputs from both the parent graph and any nested subgraphs. +- [**Stream from subgraphs**](../how-tos/streaming.md#stream-subgraph-outputs) — include outputs from both the parent graph and any nested subgraphs. - [**Use any LLM**](../how-tos/streaming.md#use-with-any-llm) — stream tokens from any LLM, even if it's not a LangChain model using the `custom` streaming mode. - [**Use multiple streaming modes**](../how-tos/streaming.md#stream-multiple-modes) — choose from `values` (full state), `updates` (state deltas), `messages` (LLM tokens + metadata), `custom` (arbitrary user data), or `debug` (detailed traces). \ No newline at end of file diff --git a/docs/docs/how-tos/streaming.md b/docs/docs/how-tos/streaming.md index 78e240a4a..df3abdcc9 100644 --- a/docs/docs/how-tos/streaming.md +++ b/docs/docs/how-tos/streaming.md @@ -193,9 +193,9 @@ You can specify multiple streaming modes by passing stream mode as a list: `stre ### Disable streaming -In some applications you might need to disable streaming of individual tokens for a given model. This is useful in [multi-agent](./multi-agent.md) systems to control which agents stream their output. +In some applications you might need to disable streaming of individual tokens for a given model. This is useful in [multi-agent](../agents/multi-agent.md) systems to control which agents stream their output. -See the [Models](./models.md#disable-streaming) guide to learn how to disable streaming. +See the [Models](../agents/models.md#disable-streaming) guide to learn how to disable streaming. ## Stream from a workflow