Meshpocalypse Semantic
    Preparing search index...

    Interface AuctionConfig

    Configuration options for AuctionOrchestrator.

    interface AuctionConfig {
        bidWindowMs?: number;
        tiebreaker?: "lowest-load" | "first-response";
    }
    Index

    Properties

    bidWindowMs?: number

    Bid collection window in milliseconds.

    500
    
    tiebreaker?: "lowest-load" | "first-response"

    Tiebreaker strategy when multiple bids share the highest score.

    • 'lowest-load' — prefer the agent with the most headroom (default).
    • 'first-response' — prefer the agent that responded first.
    'lowest-load'