From b75daf093e7383a3200ca016eaba90bd80a9d34f Mon Sep 17 00:00:00 2001 From: Ahmad Elmalah Date: Tue, 9 Sep 2025 18:14:25 +0300 Subject: [PATCH] docs(multi-agent page): fix a couple of broken links (#5813) On this page: https://langchain-ai.github.io/langgraph/concepts/multi_agent/ The last couple of links are broken **First link:** https://langchain-ai.github.io/langgraph/concepts/how-tos/subgraph.ipynb#different-state-schemas should be updated to https://langchain-ai.github.io/langgraph/how-tos/subgraph/#different-state-schemas **Second link:** https://langchain-ai.github.io/langgraph/concepts/how-tos/graph-api.ipynb#pass-private-state-between-nodes should be updated to https://langchain-ai.github.io/langgraph/how-tos/graph-api/#pass-private-state-between-nodes --------- Co-authored-by: Sydney Runkle <54324534+sydney-runkle@users.noreply.github.com> --- docs/docs/concepts/multi_agent.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/concepts/multi_agent.md b/docs/docs/concepts/multi_agent.md index 53f8bb3cd..752b8cc6b 100644 --- a/docs/docs/concepts/multi_agent.md +++ b/docs/docs/concepts/multi_agent.md @@ -897,5 +897,5 @@ There are two high-level approaches to achieve that: An agent might need to have a different state schema from the rest of the agents. For example, a search agent might only need to keep track of queries and retrieved documents. There are two ways to achieve this in LangGraph: -- Define [subgraph](./subgraphs.md) agents with a separate state schema. If there are no shared state keys (channels) between the subgraph and the parent graph, it's important to [add input / output transformations](../how-tos/subgraph.ipynb#different-state-schemas) so that the parent graph knows how to communicate with the subgraphs. -- Define agent node functions with a [private input state schema](../how-tos/graph-api.ipynb#pass-private-state-between-nodes) that is distinct from the overall graph state schema. This allows passing information that is only needed for executing that particular agent. +- Define [subgraph](./subgraphs.md) agents with a separate state schema. If there are no shared state keys (channels) between the subgraph and the parent graph, it's important to [add input / output transformations](../how-tos/subgraph.md#different-state-schemas) so that the parent graph knows how to communicate with the subgraphs. +- Define agent node functions with a [private input state schema](../how-tos/graph-api.md#pass-private-state-between-nodes) that is distinct from the overall graph state schema. This allows passing information that is only needed for executing that particular agent.