Pinecone TypeScript SDK - v8.1.0
    Preparing search index...

    Interface HighlightModel

    Represents a portion of a referenced document that directly supports or is relevant to the response.

    HighlightModel

    interface HighlightModel {
        content: string;
        type: string;
    }
    Index
    content: string

    The text content of the highlighted portion from the referenced document.

    HighlightModel

    type: string

    The type of the highlight. Only text is supported.

    HighlightModel