SongGuess
    Preparing search index...

    Type Alias AutoRagSearchResponse

    Use the standalone AI Search Workers binding instead. See https://developers.cloudflare.com/ai-search/usage/workers-binding/

    type AutoRagSearchResponse = {
        data: {
            attributes: Record<string, string | number | boolean | null>;
            content: { text: string; type: "text" }[];
            file_id: string;
            filename: string;
            score: number;
        }[];
        has_more: boolean;
        next_page: string
        | null;
        object: "vector_store.search_results.page";
        search_query: string;
    }
    Index

    Properties

    data: {
        attributes: Record<string, string | number | boolean | null>;
        content: { text: string; type: "text" }[];
        file_id: string;
        filename: string;
        score: number;
    }[]
    has_more: boolean
    next_page: string | null
    object: "vector_store.search_results.page"
    search_query: string