nexus-agents - v2.80.0
    Preparing search index...

    Interface ToolCompletedEvent

    interface ToolCompletedEvent {
        timestamp: number;
        type: "tool.completed";
        toolName: string;
        invocationId: string;
        durationMs: number;
        success: boolean;
        errorMessage?: string;
    }

    Hierarchy

    • BaseEvent
      • ToolCompletedEvent
    Index

    Properties

    timestamp: number
    type: "tool.completed"
    toolName: string
    invocationId: string
    durationMs: number
    success: boolean
    errorMessage?: string