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

    Interface MultiModalSnippetModel

    Represents a multimodal context snippet.

    MultiModalSnippetModel

    interface MultiModalSnippetModel {
        content: MultiModalContentBlocksModel[];
        reference: TypedReferenceModel;
        score: number;
        type: string;
    }
    Index

    A list of multimodal content blocks (text, images, etc.) included in this snippet.

    MultiModalSnippetModel

    MultiModalSnippetModel

    score: number

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

    MultiModalSnippetModel

    type: string

    The type of context snippet. Always multimodal.

    MultiModalSnippetModel