Type for creating a HNSW schema vector field.
HNSW (Hierarchical Navigable Small World) is an approximate nearest neighbor algorithm that provides fast search with good recall. Best for large datasets.
CreateSchemaHNSWVectorField: CreateSchemaVectorField<VectorAlgorithms.HNSW, __type>const hnswIndex: CreateSchemaHNSWVectorField = {
ALGORITHM: VectorAlgorithms.HNSW,
DISTANCE_METRIC: "COSINE",
M: 16,
EF_CONSTRUCTION: 200,
EF_RUNTIME: 10
};