diff --git a/docs/src/python/python.md b/docs/src/python/python.md index 9a9dcf55..f59362cb 100644 --- a/docs/src/python/python.md +++ b/docs/src/python/python.md @@ -133,6 +133,10 @@ lists the indices that LanceDb supports. ::: lancedb.index.IvfPq +::: lancedb.index.HnswPq + +::: lancedb.index.HnswSq + ::: lancedb.index.IvfFlat ## Querying (Asynchronous) diff --git a/python/python/lancedb/index.py b/python/python/lancedb/index.py index 63834b8d..8b9f7ca4 100644 --- a/python/python/lancedb/index.py +++ b/python/python/lancedb/index.py @@ -568,4 +568,14 @@ class IvfPq: sample_rate: int = 256 -__all__ = ["BTree", "IvfFlat", "IvfPq", "HnswPq", "HnswSq", "IndexConfig"] +__all__ = [ + "BTree", + "IvfPq", + "IvfFlat", + "HnswPq", + "HnswSq", + "IndexConfig", + "FTS", + "Bitmap", + "LabelList", +]