Interface for the base configuration of HNSWLib. It includes the space name and the number of dimensions.

interface HNSWLibBase {
    numDimensions?: number;
    space: SpaceName;
}

Hierarchy (view full)

Properties

numDimensions?: number
space: SpaceName