Meshpocalypse Semantic
    Preparing search index...

    Interface BidResponse

    A bid submitted by an agent participant.

    interface BidResponse {
        agentId: string;
        capabilities: string[];
        load: number;
        score: number;
        taskId: string;
    }
    Index

    Properties

    agentId: string

    Bidding agent's unique identifier.

    capabilities: string[]

    Capabilities advertised by the bidding agent.

    load: number

    Current agent load (0.0 = idle, 1.0 = fully loaded). Lower is better.

    score: number

    Jaccard similarity score: |intersection| / |union| of required vs agent capabilities. Range: 0.0–1.0.

    taskId: string

    Echo of the task ID being bid on.