FlowGuard API - v1.2.0-rc.2
    Preparing search index...

    Interface ToolCallDetail

    Detail payload for tool call events.

    interface ToolCallDetail {
        kind: "tool_call";
        tool: string;
        argsSummary: Record<string, string>;
        success: boolean;
        errorMessage?: string;
        transitionCount: number;
    }
    Index

    Properties

    kind: "tool_call"
    tool: string
    argsSummary: Record<string, string>

    Summarized args (no sensitive data — just keys and scalar values).

    success: boolean

    Whether the tool call succeeded.

    errorMessage?: string

    Error message if failed.

    transitionCount: number

    Number of transitions triggered by this tool call.