Neutrome SDK reference
    Preparing search index...

    Type Alias ToolCallSpan

    Instruction range covering one tool call.

    type ToolCallSpan = {
        callId: string | null;
        end: number;
        name: string | null;
        start: number;
    }
    Index
    callId: string | null

    Provider-assigned call id, or null when absent.

    end: number

    Index of the closing instruction.

    name: string | null

    Called tool name, or null when absent.

    start: number

    Index of the opening instruction.