vigiles API reference
    Preparing search index...

    Interface ToolCall

    A tool the agent invoked, paired with its result (transcript mode only).

    interface ToolCall {
        input: unknown;
        isError: boolean;
        name: string;
        resultText: string;
    }
    Index

    Properties

    input: unknown
    isError: boolean

    Whether the tool_result came back flagged as an error.

    name: string
    resultText: string

    The tool_result text ("" if none / not captured).