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

    Interface VotingProtocolConfig

    Configuration for the voting protocol.

    interface VotingProtocolConfig {
        committeeSize: number;
        maxRounds: number;
        roundTimeoutMs: number;
        agreementThreshold: number;
        enableAntiSycophancy: boolean;
        sycophancyThreshold: number;
    }
    Index

    Properties

    committeeSize: number

    Number of agents in the committee (default: 3)

    maxRounds: number

    Maximum rounds before forcing decision (default: 3)

    roundTimeoutMs: number

    Timeout per round in milliseconds (default: 60000)

    agreementThreshold: number

    Minimum agreement threshold (default: 0.67)

    enableAntiSycophancy: boolean

    Enable anti-sycophancy detection (default: true)

    sycophancyThreshold: number

    Similarity threshold for sycophancy detection (default: 0.8)