Type alias VectorIndexConfigDynamic

VectorIndexConfigDynamic: {
    distance: VectorDistance;
    flat: VectorIndexConfigFlat;
    hnsw: VectorIndexConfigHNSW;
    threshold: number;
    type: "dynamic";
}

Type declaration