AgentOS Extensions API - v1.0.3
    Preparing search index...

    Interface MultiSearchResult

    A search result enriched with cross-provider agreement data.

    interface MultiSearchResult {
        agreementCount: number;
        confidenceScore: number;
        position?: number;
        providerPositions: Record<string, number>;
        providers: string[];
        snippet: string;
        title: string;
        url: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    agreementCount: number

    Number of providers that returned this URL

    confidenceScore: number

    Confidence score (0-100) based on cross-provider agreement + position

    position?: number
    providerPositions: Record<string, number>

    The position this result appeared at in each provider's results

    providers: string[]

    Which providers returned this URL

    snippet: string
    title: string
    url: string