Meshpocalypse Semantic
    Preparing search index...

    Interface AuctionResult

    Result returned by a completed auction.

    interface AuctionResult {
        allBids: BidResponse[];
        score: number;
        taskId: string;
        winner: string;
    }
    Index

    Properties

    allBids: BidResponse[]

    All bids received during the auction window, in response order.

    score: number

    Winning bid score.

    taskId: string

    Task ID the auction was run for.

    winner: string

    Agent ID of the winning bidder.