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

    Interface WeightedConsensusResult

    Weighted consensus result.

    interface WeightedConsensusResult {
        decision: "approve" | "reject" | "no_consensus";
        weightedApproval: number;
        weightedRejection: number;
        totalWeight: number;
        quorumReached: boolean;
        byzantineDetected: boolean;
        participatingAgents: readonly string[];
        weightBreakdown: ReadonlyMap<string, number>;
    }
    Index

    Properties

    decision: "approve" | "reject" | "no_consensus"
    weightedApproval: number
    weightedRejection: number
    totalWeight: number
    quorumReached: boolean
    byzantineDetected: boolean
    participatingAgents: readonly string[]
    weightBreakdown: ReadonlyMap<string, number>