Type alias VectorIndexConfigDynamicCreate

VectorIndexConfigDynamicCreate: RecursivePartial<Omit<VectorIndexConfigDynamic, "hnsw" | "flat">> & {
    flat?: VectorIndexConfigFlatCreate;
    hnsw?: VectorIndexConfigHNSWCreate;
}

Type declaration