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

推荐订阅源

U
Unit 42
The Cloudflare Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
G
Google Developers Blog
Vercel News
Vercel News
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
博客园 - 三生石上(FineUI控件)
MongoDB | Blog
MongoDB | Blog
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
Microsoft Security Blog
Microsoft Security Blog
P
Proofpoint News Feed
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG

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...