ppc64le/linux/: langgraph-1.1.7a2+ppc64le1 metadata and description

Simple index Stable version available

Building stateful, multi-actor applications with LLMs

classifiers
  • Development Status :: 5 - Production/Stable
  • Programming Language :: Python
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3 :: Only
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Programming Language :: Python :: 3.13
  • Programming Language :: Python :: Implementation :: CPython
  • Programming Language :: Python :: Implementation :: PyPy
  • Environment :: MetaData :: IBM Python Ecosystem
description_content_type text/markdown
license_expression MIT
license_file
  • LICENSE
project_urls
  • Homepage, https://docs.langchain.com/oss/python/langgraph/overview
  • Documentation, https://reference.langchain.com/python/langgraph/
  • Source, https://github.com/langchain-ai/langgraph/tree/main/libs/langgraph
  • Changelog, https://github.com/langchain-ai/langgraph/releases
  • Twitter, https://x.com/LangChain
  • Slack, https://www.langchain.com/join-community
  • Reddit, https://www.reddit.com/r/LangChain/
requires_dist
  • langchain-core==1.3.0a2
  • langgraph-checkpoint<5.0.0,>=2.1.0
  • langgraph-prebuilt<1.1.0,>=1.0.9
  • langgraph-sdk<0.4.0,>=0.3.0
  • pydantic>=2.7.4
  • xxhash>=3.5.0
requires_python >=3.10
File Tox results History
langgraph-1.1.7a2+ppc64le1-py3-none-any.whl
Size
170 KB
Type
Python Wheel
Python
3
  • Replaced 1 time(s)
  • Uploaded to ppc64le/linux by ppc64le 2026-05-05 15:38:03
LangGraph Logo

Low-level orchestration framework for building stateful agents.

PyPI - License PyPI - Downloads Version Open Issues Docs Twitter / X

Trusted by companies shaping the future of agents – including Klarna, Replit, Elastic, and more – LangGraph is a low-level orchestration framework for building, managing, and deploying long-running, stateful agents.

Get started

Install LangGraph:

pip install -U langgraph

Create a simple workflow:

from langgraph.graph import START, StateGraph
from typing_extensions import TypedDict


class State(TypedDict):
    text: str


def node_a(state: State) -> dict:
    return {"text": state["text"] + "a"}


def node_b(state: State) -> dict:
    return {"text": state["text"] + "b"}


graph = StateGraph(State)
graph.add_node("node_a", node_a)
graph.add_node("node_b", node_b)
graph.add_edge(START, "node_a")
graph.add_edge("node_a", "node_b")

print(graph.compile().invoke({"text": ""}))
# {'text': 'ab'}

Get started with the LangGraph Quickstart.

To quickly build agents with LangChain's create_agent (built on LangGraph), see the LangChain Agents documentation.

Core benefits

LangGraph provides low-level supporting infrastructure for any long-running, stateful workflow or agent. LangGraph does not abstract prompts or architecture, and provides the following central benefits:

LangGraph’s ecosystem

While LangGraph can be used standalone, it also integrates seamlessly with any LangChain product, giving developers a full suite of tools for building agents. To improve your LLM application development, pair LangGraph with:

[!NOTE] Looking for the JS version of LangGraph? See the JS repo and the JS docs.

Additional resources

Acknowledgements

LangGraph is inspired by Pregel and Apache Beam. The public interface draws inspiration from NetworkX. LangGraph is built by LangChain Inc, the creators of LangChain, but can be used without LangChain.

Export Classification Notice

The software hosted on this website consists of publicly available open‑source packages. To the extent U.S. export regulations apply, software that is publicly available as described in 15 C.F.R. §§ 734.7 (for non-encryption software) or 742.15(b) (for encryption software) is not subject to the Export Administration Regulations (EAR). Users are responsible for complying with all applicable export laws and regulations.