-
Notifications
You must be signed in to change notification settings - Fork 0
API agentmesh_adapter
Devrajsinh Gohil edited this page Aug 30, 2026
·
1 revision
Public Python adapter module for compiling and running LangGraph workflows on AgentMesh.
Compiles a LangGraph StateGraph builder into an AgentMeshCompiledApp.
-
builder(StateGraph): The configured LangGraph workflow builder. -
checkpointer(Optional): A checkpoint saver instance (e.g.MemorySaver).
-
AgentMeshCompiledApp: The compiled executable workflow instance.
Synchronously executes the workflow to completion.
Asynchronously executes the workflow on the event loop.
Streams state snapshots after wave execution.
Asynchronously streams state snapshots.
Retrieves persisted checkpoint state for the given configuration thread.\n
Getting Started
How-To Guides
- Compile a Graph
- Annotated Reducers
- Parallel Fanout
- Send() Map-Reduce
- Command() Routing
- Nested Subgraphs
- Async & Streaming
- Checkpointing & State
- Financial Swarm Example
Architecture
- System Overview
- C++ Engine Internals
- O(1) Scheduler
- Dual-Tier Graph
- Persistence & WAL
- Zero-Copy Pybind Bridge
- SOLID Design Principles
API Reference
Benchmarks
Contributing