Type Alias Chunk

type Chunk = {
    chunkMeta: KbChunkMeta;
    searchSource?: string;
    semanticScore?: number;
    text: string;
    tfidfScore?: number;
}
Index

Properties

chunkMeta: KbChunkMeta

Metadata about the chunk

searchSource?: string
semanticScore?: number
text: string
tfidfScore?: number