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

    Interface IterativeConsensusConfig

    Configuration for an iterative consensus vote.

    interface IterativeConsensusConfig {
        maxIterations?: number;
        simulateVotes?: boolean;
        quickMode?: boolean;
        strategy?: VotingStrategy;
        maxProposalLength?: number;
        logger?: ILogger;
        pipelinePrefix?: string;
    }
    Index

    Properties

    maxIterations?: number

    Maximum plan→vote iterations (default: 3).

    simulateVotes?: boolean

    Use simulated votes (for testing).

    quickMode?: boolean

    Use quick mode (3 agents instead of 6).

    strategy?: VotingStrategy

    Voting strategy (default: 'higher_order').

    maxProposalLength?: number

    Max proposal length sent to voters (default: 4000).

    logger?: ILogger

    Logger instance.

    pipelinePrefix?: string

    Pipeline prefix for observability events.