SongGuess
    Preparing search index...

    Metadata about an existing index.

    This type is exclusively for the Vectorize beta and will be deprecated once Vectorize RC is released. See VectorizeIndexInfo for its post-beta equivalent.

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

    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.