UNPKG

deepagents

Version:

Deep Agents - a library for building controllable AI agents with LangGraph

3 lines (2 loc) 254 B
import type { DeepAgentStateType, ToolInterruptConfig } from "./types.js"; export declare function createInterruptHook(toolConfigs: ToolInterruptConfig, messagePrefix?: string): (state: DeepAgentStateType) => Promise<Partial<DeepAgentStateType> | void>;