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

    Interface TextSnippetModel

    Represents a text context snippet.

    TextSnippetModel

    interface TextSnippetModel {
        content: string;
        reference: TypedReferenceModel;
        score: number;
        type: string;
    }
    Index
    content: string

    The textual content of the snippet.

    TextSnippetModel

    TextSnippetModel

    score: number

    A numerical score indicating the relevance of this snippet to the query.

    TextSnippetModel

    type: string

    The type of context snippet. Always text.

    TextSnippetModel