rabitq-rs 0.9.0

Advanced vector search: RaBitQ quantization with IVF and MSTG (Multi-Scale Tree Graph) index
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
"""
Python bindings for RaBitQ-RS.

This package provides high-performance approximate nearest neighbor search
using both MSTG (Multi-Scale Tree Graph) and IVF (Inverted File) algorithms
with RaBitQ quantization.
"""

from .rabitq_rs import IvfRabitqIndex, MstgIndex

__version__ = "0.5.0"
__all__ = ["IvfRabitqIndex", "MstgIndex"]