The CollectionModel describes the configuration and status of a Pinecone collection.

CollectionModel

interface CollectionModel {
    dimension?: number;
    environment: string;
    name: string;
    size?: number;
    status: string;
    vectorCount?: number;
}

Properties

dimension?: number

The dimension of the vectors stored in each record held in the collection.

CollectionModel

environment: string

The environment where the collection is hosted.

CollectionModel

name: string

The name of the collection.

CollectionModel

size?: number

The size of the collection in bytes.

CollectionModel

status: string

The status of the collection. Possible values: Initializing, Ready, or Terminating.

CollectionModel

vectorCount?: number

The number of records stored in the collection.

CollectionModel