export interface ToolExecutionData {
    type: string;
    function_calls: Array<{
        id: string;
        type: string;
        call_id: string;
        arguments: string;
        name: string;
        created_at: number;
    }>;
    function_call_outputs: Array<{
        id: string;
        type: string;
        name: string;
        call_id: string;
        output: string;
        is_error: boolean;
        created_at: number;
    }>;
    created_at: number;
    parseError?: boolean;
    rawData?: any;
}
