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

    Interface WeightedVotingConfig

    Configuration for weighted Byzantine voting.

    interface WeightedVotingConfig {
        minWeight: number;
        maxByzantineFraction: number;
        weightDecayFactor: number;
        weightRecoveryFactor: number;
        minTrustScore: number;
        byzantineFlagThreshold: number;
        initialWeight: number;
        quorumThreshold: number;
    }
    Index

    Properties

    minWeight: number

    Minimum weight to participate in voting (default: 0.1)

    maxByzantineFraction: number

    Maximum Byzantine fault tolerance (default: 0.33)

    weightDecayFactor: number

    Weight decay factor per failed task (default: 0.9)

    weightRecoveryFactor: number

    Weight recovery factor per successful task (default: 1.05)

    minTrustScore: number

    Trust score required to vote (default: 0.3)

    byzantineFlagThreshold: number

    Byzantine flag threshold for exclusion (default: 3)

    initialWeight: number

    Initial weight for new agents (default: 0.5)

    quorumThreshold: number

    Quorum threshold for valid consensus (default: 0.67)