langchain.js
    Preparing search index...

    Interface XAIResponsesUrlCitationAnnotation

    Citation annotation for web search results.

    interface XAIResponsesUrlCitationAnnotation {
        end_index: number;
        start_index: number;
        title?: string;
        type: "url_citation";
        url: string;
    }
    Index

    Properties

    end_index: number

    End index in the text.

    start_index: number

    Start index in the text.

    title?: string

    The title of the cited page.

    type: "url_citation"
    url: string

    The URL being cited.