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

    Interface PodSpecMetadataConfig

    Configuration for the behavior of Pinecone's internal metadata index. By default, all metadata is indexed; when metadata_config is present, only specified metadata fields are indexed. These configurations are only valid for use with pod-based indexes.

    PodSpecMetadataConfig

    interface PodSpecMetadataConfig {
        indexed?: string[];
    }
    Index
    indexed?: string[]

    By default, all metadata is indexed; to change this behavior, use this property to specify an array of metadata fields that should be indexed.

    PodSpecMetadataConfig