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

    Interface PathScore

    A scored path through a reasoning tree from root to a target node.

    interface PathScore {
        treeId: string;
        path: readonly string[];
        targetNodeId: string;
        score: number;
        breakdown: PathScoreBreakdown;
        reachesConclusion: boolean;
        length: number;
    }
    Index

    Properties

    treeId: string

    Tree this path belongs to

    path: readonly string[]

    Ordered node IDs from root to target

    targetNodeId: string

    Target node (usually a conclusion)

    score: number

    Overall path score (0-1)

    Detailed score breakdown

    reachesConclusion: boolean

    Whether this path reaches a conclusion

    length: number

    Path length (number of nodes)