Quick Use
pip install langgraphfrom langgraph.graph import StateGraph, END
graph = StateGraph(State)
graph.add_node("research", research_fn)
graph.add_node("write", write_fn)
graph.add_edge("research", "write")
graph.add_edge("write", END)
app = graph.compile()Intro
LangGraph is a stateful AI agent graph framework developed by the LangChain team, with 8,000+ GitHub stars. Supports loops, conditional branches, persistent state, and human-in-the-loop workflows. Ideal for building complex agent systems with non-linear workflows.
Source & Thanks
Created by LangChain. Licensed under MIT.
langgraph — ⭐ 8,000+