> ## Documentation Index
> Fetch the complete documentation index at: https://langchain-zh.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# LangGraph v1 更新内容

**LangGraph v1 是一个专注于稳定性的代理运行时版本。** 它保持核心图 API 和执行模型不变，同时改进了类型安全、文档和开发者体验。

它旨在与 [LangChain v1](/oss/python/releases/langchain-v1)（其 `create_agent` 基于 LangGraph 构建）协同工作，以便您可以从高级功能开始，并在需要时深入到细粒度的控制。

<CardGroup cols={1}>
  <Card title="稳定的核心 API" icon="sitemap">
    图原语（状态、节点、边）以及执行/运行时模型保持不变，使得升级变得简单直接。
  </Card>

  <Card title="默认可靠性" icon="database">
    具有检查点、持久化、流式传输和人机协作的耐用执行继续得到核心支持。
  </Card>

  <Card title="与 LangChain v1 无缝集成" icon="link">
    LangChain 的 `create_agent` 在 LangGraph 上运行。使用 LangChain 快速启动；需要自定义编排时切换到 LangGraph。
  </Card>
</CardGroup>

To upgrade,

<CodeGroup>
  ```bash pip theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
  pip install -U langgraph
  ```

  ```bash uv theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
  uv add langgraph
  ```
</CodeGroup>

## create\_react\_agent 弃用

LangGraph 的 [`create_react_agent`](https://reference.langchain.com/python/langchain-classic/agents/react/agent/create_react_agent) 预构建组件已被弃用，取而代之的是 LangChain 的 [`create_agent`](https://reference.langchain.com/python/langchain/agents/factory/create_agent)。它提供了更简单的接口，并通过引入中间件提供了更大的定制潜力。

* 有关新 [`create_agent`](https://reference.langchain.com/python/langchain/agents/factory/create_agent) API 的信息，请参阅 [LangChain v1 发布说明](/oss/python/releases/langchain-v1#create-agent)。
* 有关从 [`create_react_agent`](https://reference.langchain.com/python/langchain-classic/agents/react/agent/create_react_agent) 迁移到 [`create_agent`](https://reference.langchain.com/python/langchain/agents/factory/create_agent) 的信息，请参阅 [LangChain v1 迁移指南](/oss/python/migrate/langchain-v1#create-agent)。

## 报告问题

请在 [GitHub](https://github.com/langchain-ai/langgraph/issues) 上报告任何发现的 1.0 相关问题，并使用 [`'v1'` 标签](https://github.com/langchain-ai/langgraph/issues?q=state%3Aopen%20label%3Av1)。

## 其他资源

<CardGroup cols={3}>
  <Card title="LangGraph 1.0" icon="rocket" href="https://blog.langchain.com/langchain-langchain-1-0-alpha-releases/">
    阅读公告
  </Card>

  <Card title="概述" icon="book" href="/oss/python/langgraph/overview" arrow>
    LangGraph 是什么以及何时使用它
  </Card>

  <Card title="图 API" icon="sitemap" href="/oss/python/langgraph/graph-api" arrow>
    使用状态、节点和边构建图
  </Card>

  <Card title="LangChain 代理" icon="robot" href="/oss/python/langchain/agents" arrow>
    基于 LangGraph 构建的高级代理
  </Card>

  <Card title="迁移指南" icon="arrows-exchange" href="/oss/python/migrate/langgraph-v1" arrow>
    如何迁移到 LangGraph v1
  </Card>

  <Card title="GitHub" icon="brand-github" href="https://github.com/langchain-ai/langgraph">
    报告问题或贡献代码
  </Card>
</CardGroup>

## 参见

* [版本控制](/oss/python/versioning) – 理解版本号
* [发布策略](/oss/python/release-policy) – 详细的发布政策

***

<div className="source-links">
  <Callout icon="edit">
    [Edit this page on GitHub](https://github.com/langchain-ai/docs/edit/main/src/i18n\zh-CN\oss\python\releases\langgraph-v1.mdx) or [file an issue](https://github.com/langchain-ai/docs/issues/new/choose).
  </Callout>

  <Callout icon="terminal-2">
    [Connect these docs](/use-these-docs) to Claude, VSCode, and more via MCP for real-time answers.
  </Callout>
</div>
