Skip to content
1 min read · 40 words

Type Alias: DispatchToolCallStoreFn

ts
type DispatchToolCallStoreFn = (
  ctx: DispatchContext,
  v: ToolCall,
) => void | Promise<void>;

Stores a new tool call (LLM execution context variant).

Parameters

ParameterType
ctxDispatchContext
vToolCall

Returns

void | Promise<void>