惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
美团技术团队
J
Java Code Geeks
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog
宝玉的分享
宝玉的分享
博客园 - Franky
Y
Y Combinator Blog
爱范儿
爱范儿
H
Help Net Security
腾讯CDC
G
Google Developers Blog
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
V
Visual Studio Blog
The GitHub Blog
The GitHub Blog
博客园_首页
C
Check Point Blog
博客园 - 三生石上(FineUI控件)

How does state work in LangGraph subgraphs?

How does state work in LangGraph subgraphs? How does state work in LangGraph subgraphs? How does state work in LangGraph subgraphs?
How does state work in LangGraph subgraphs?
2025-10-06 · via How does state work in LangGraph subgraphs?

The principle of subgraphs in LangGraph: for each node, if it is a subgraph, is its state isolated—unaffected by other subgraphs? Specifically, if multiple subgraphs run concurrently and modify the same key (which could be defined in the parent graph or shared among these subgraphs), suppose Subgraph 1 finishes early, while Subgraph 2 has many nodes to execute. After Subgraph 1 completes, a node within Subgraph 2 might access that shared key—would it see the original value (before Subgraph 1’s m...