Causality Analyzer
    Preparing search index...
    interface GraphVisualizationData {
        edges: {
            directed: boolean;
            source: string;
            target: string;
            weight: number;
        }[];
        nodes: GraphVizNode[];
    }
    Index
    edges: { directed: boolean; source: string; target: string; weight: number }[]
    nodes: GraphVizNode[]