langgraph
Installation
SKILL.md
LangGraph
Overview
LangGraph is a framework for building stateful, multi-actor AI applications as graphs. Unlike simple chains, LangGraph supports cycles, branching, persistence, and human-in-the-loop — essential for real-world agents that need to plan, retry, delegate, and remember state across interactions.
Instructions
Step 1: Installation
pip install langgraph langgraph-checkpoint langchain-openai
# For persistence:
pip install langgraph-checkpoint-sqlite # or langgraph-checkpoint-postgres
Step 2: Core Concepts
LangGraph models applications as graphs with:
Related skills