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[];
}

Properties

Properties

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