A chunk result from similarity search

interface ChunkResult {
    content: string;
    contentHash: string;
    embeddingId: string;
    endChar: number;
    endLine: number;
    fileId: string;
    fileName?: string;
    filePath?: string;
    id: string;
    projectId: string;
    startChar: number;
    startLine: number;
}

Properties

content: string
contentHash: string
embeddingId: string
endChar: number
endLine: number
fileId: string
fileName?: string
filePath?: string
id: string
projectId: string
startChar: number
startLine: number