Represents a portion of a summary, optionally linked to representative comments.

interface SummaryChunk {
    representativeCommentIds?: string[];
    text: string;
}

Properties

representativeCommentIds?: string[]

An optional array of comment IDs that are representative of this chunk. These IDs can be used for grounding and providing context. Could be empty for fluffy/connecting text (e.g., ", and also" between two verifiable points).

text: string

The text content of this chunk of the summary.