Member Junction
    Preparing search index...

    The IndexDescription describes the configuration of an index.

    IndexDescription

    interface IndexDescription {
        dimension: number;
        host: string;
        metric: IndexModelMetricEnum;
        name: string;
    }
    Index

    Properties

    dimension: number

    The dimensions of the vectors to be inserted in the index

    IndexDescription

    host: string

    The URL address where the index is hosted.

    IndexDescription

    The distance metric to be used for similarity search. You can use 'euclidean', 'cosine', or 'dotproduct'.

    IndexDescription

    name: string

    The name of the index. The maximum length is 45 characters. It may contain lowercase alphanumeric characters or hyphens, and must not begin or end with a hyphen.

    IndexDescription