From 8507dc33f0f88e3044d68a31749d88d3a3715bb6 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Tue, 14 Jan 2025 13:41:50 -0500 Subject: [PATCH] FIx docs: Update MULTIPLE_SUBGRAPHS.md (#3016) --- docs/docs/troubleshooting/errors/MULTIPLE_SUBGRAPHS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/troubleshooting/errors/MULTIPLE_SUBGRAPHS.md b/docs/docs/troubleshooting/errors/MULTIPLE_SUBGRAPHS.md index a0b41110d..f14902a9b 100644 --- a/docs/docs/troubleshooting/errors/MULTIPLE_SUBGRAPHS.md +++ b/docs/docs/troubleshooting/errors/MULTIPLE_SUBGRAPHS.md @@ -1,6 +1,6 @@ # MULTIPLE_SUBGRAPHS -You are calling the same subgraph multiple times within a single LangGraph node with checkpointing enabled for each subgraph. +You are calling subgraphs multiple times within a single LangGraph node with checkpointing enabled for each subgraph. This is currently not allowed due to internal restrictions on how checkpoint namespacing for subgraphs works. @@ -9,4 +9,4 @@ This is currently not allowed due to internal restrictions on how checkpoint nam The following may help resolve this error: - If you don't need to interrupt/resume from a subgraph, pass `checkpointer=False` when compiling it like this: `.compile(checkpointer=False)` -- Don't imperatively call graphs multiple times in the same node, and instead use the [`Send`](https://langchain-ai.github.io/langgraph/concepts/low_level/#send) API. \ No newline at end of file +- Don't imperatively call graphs multiple times in the same node, and instead use the [`Send`](https://langchain-ai.github.io/langgraph/concepts/low_level/#send) API.