Member Junction
    Preparing search index...

    One result from Tavily's /search endpoint.

    interface TavilySearchResultItem {
        content: string;
        publishedDate?: string;
        rawContent?: string;
        score: number;
        title: string;
        url: string;
    }
    Index

    Properties

    content: string

    Extracted page content, already trimmed by Tavily to what an LLM needs.

    publishedDate?: string

    Only populated when Topic is 'news'; absent otherwise.

    rawContent?: string

    Only populated when IncludeRawContent is set.

    score: number

    Tavily's relevance score for this result against the query, 0-1.

    It is a relative ranking signal within one response, not a calibrated probability — do not compare scores across queries, and do not hard-code thresholds against it.

    title: string
    url: string