Providers
langgraph
Wrap a LangGraph graph as an AgentsKit adapter — streamEvents surfaced as chunks.
import { langgraph } from '@agentskit/adapters'
import { graph } from './my-langgraph-graph'
const adapter = langgraph({ graph })#Options
| Option | Type |
|---|---|
graph | LangGraph-compiled graph |
streamMode | 'values' | 'updates' | 'messages' |
#Why langgraph
- Use existing LangGraph orchestration inside AgentsKit UI/runtime.
- Surface
streamEventsas standard adapter chunks.
#Related
Explore nearby
- PeerProviders
25 native chat and embedder adapters, plus higher-order adapters that compose candidates. Separate from the 140-provider models catalog.
- PeerChoosing an adapter
Capability decision table and rules of thumb for picking a chat adapter.
- PeerHosted chat adapters
17 managed-LLM adapters. Same contract; swap by changing one import.