weaviate-client
    Preparing search index...

    Type Alias VectorIndexConfigDynamicCreate

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