Skip to content

Commit

Permalink
FIx docs: Update MULTIPLE_SUBGRAPHS.md (#3016)
Browse files Browse the repository at this point in the history
  • Loading branch information
eyurtsev authored Jan 14, 2025
1 parent a11ba2b commit 8507dc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/troubleshooting/errors/MULTIPLE_SUBGRAPHS.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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.
- 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.

0 comments on commit 8507dc3

Please sign in to comment.