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.