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

    Interface PreviewCollectionModel

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

    CollectionModel

    interface PreviewCollectionModel {
        dimension?: number;
        environment: string;
        name: string;
        size?: number;
        status: string;
        vectorCount?: number;
    }
    Index
    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