LangGraph
interrupt(HumanInterrupt) maps onto the Hitly envelope.
Status: coming soon.
LangGraph pauses with interrupt(). Agent Inbox's HumanInterrupt is the closest cousin to Hitly's envelope (accept / edit / ignore / response).
How it works with Hitly
- Graph node calls
interrupt(HumanInterrupt)and notifies Hitly (webhook or callback). - Hitly stores the envelope (
action_request,config,description). - Reviewer decides.
- Hitly resumes the thread with
HumanResponse.
A checkpointer is required so the graph can pause.
Decision mapping
| Hitly | HumanResponse |
|---|---|
accept | { type: 'accept' } |
edit | { type: 'edit', args: ActionRequest } |
respond | { type: 'response', args: string } |
ignore / reject | { type: 'ignore' } |