LangGraph
LangGraph 是 LangChain 官方推出的 Python 状态图框架,用于构建复杂、有状态、可持久化的 Agent 应用。它编译到 Pregel 引擎,支持循环、分支、并行和人工介入。
目录
- 核心概念 —— StateGraph、Node、Edge、Reducer、Command、Checkpoint 等核心抽象
- Router-Specialist实战 —— 函数路由 → LLM 结构化路由 → Swarm 自治三种模式实战
- Durable-Execution —— 持久化执行:Thread、Checkpoint、Memory Store、Checkpointer 实现