Span attribute data for tool executions

interface ToolSpanAttributes {
    toolName: string;
    toolDescription?: string;
    toolType: string;
    toolCallId: string;
    args: Record<string, any>;
    response: any;
    sessionId: string;
    userId?: string;
    eventId: string;
}

Hierarchy (view full)

Properties

toolName: string
toolDescription?: string
toolType: string
toolCallId: string
args: Record<string, any>
response: any
sessionId: string
userId?: string
eventId: string