Sensemaking Tools Documentation
    Preparing search index...

    Interface SummaryContent

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

    interface SummaryContent {
        citations?: string[];
        subContents?: SummaryContent[];
        text: string;
        title?: string;
        type?: string;
    }
    Index

    Properties

    citations?: string[]

    An optional array of comment IDs that are representative of this content. 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).

    subContents?: SummaryContent[]

    Summaries that belong underneath this summary. This is meant to capture relations like topic/subtopic.

    text: string

    The text content for this part of the summary.

    title?: string

    The name of the section

    type?: string

    Optional data type, for filtering (etc.) operations based on non-displayed data