Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Interface CollectionModel

    The configuration and status of a collection.

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

    Hierarchy

    • Omit<GeneratedCollectionModel, "status">
      • CollectionModel
    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

    The current status of the collection.

    vectorCount?: number

    The number of records stored in the collection.

    CollectionModel