SongGuess
    Preparing search index...

    A single indexed chunk belonging to an item, including its text content and byte range.

    type AiSearchItemChunk = {
        end_byte: number;
        id: string;
        item?: {
            key: string;
            metadata?: Record<string, unknown>;
            timestamp?: number;
        };
        start_byte: number;
        text: string;
    }
    Index

    Properties

    end_byte: number
    id: string
    item?: { key: string; metadata?: Record<string, unknown>; timestamp?: number }
    start_byte: number
    text: string