Interface VectorizeIndexDetails

Metadata about an existing index.

interface VectorizeIndexDetails {
    config: VectorizeIndexConfig;
    description?: string;
    id: string;
    name: string;
    vectorsCount: number;
}

Properties

The index configuration, including the dimension size and distance metric.

description?: string

(optional) A human readable description for the index.

id: string

The unique ID of the index

name: string

The name of the index.

vectorsCount: number

The number of records containing vectors within the index.