Skip to content

BeforeInvocationEvent

Defined in: src/hooks/events.ts:138

Event triggered at the beginning of a new agent request. Fired before any model inference or tool execution occurs.

new BeforeInvocationEvent(data): BeforeInvocationEvent;

Defined in: src/hooks/events.ts:150

| Parameter | Type | | ---------------------- | ---------------------------------------------------------------------------------------- | | data | { agent: LocalAgent; invocationState: InvocationState; } | | data.agent | LocalAgent | | data.invocationState | InvocationState |

BeforeInvocationEvent

HookableEvent.constructor

readonly type: "beforeInvocationEvent";

Defined in: src/hooks/events.ts:139


readonly agent: LocalAgent;

Defined in: src/hooks/events.ts:140


readonly invocationState: InvocationState;

Defined in: src/hooks/events.ts:141


cancel: string | boolean = false;

Defined in: src/hooks/events.ts:148

Set by hook callbacks to cancel this invocation. When set to true, a default cancel message is used. When set to a string, that string is used as the assistant response message.

toJSON(): Pick<BeforeInvocationEvent, "type">;

Defined in: src/hooks/events.ts:160

Serializes for wire transport, excluding the agent reference and invocationState. Called automatically by JSON.stringify().

Pick<BeforeInvocationEvent, "type">