Skip to content

Type Alias: ToolStartedEvent

Makaio Framework


Makaio Framework / ai-adapters-core / ToolStartedEvent

ToolStartedEvent = z.infer<typeof ToolStartedEventSchema>

Defined in: ../../../adapters/core/src/namespaces/schemas/tool-lifecycle.ts:31

  • ToolStartedEvent
    • z.infer<typeof ToolStartedEventSchema>
      • typeof ToolStartedEventSchema
type ToolStartedEvent = {
eventType: 'tool_started';
toolName: string;
toolCallId: string;
};