From 20556e23a943274be567e93eab5402e56216444b Mon Sep 17 00:00:00 2001 From: Vishal Kumar Singh Date: Wed, 20 May 2026 04:36:41 +0530 Subject: [PATCH] docs: add missing Python index classes to API reference (#3392) Adds three index configuration classes to the Python API Reference that were missing from the documentation: - `IvfSq` - IVF Scalar Quantization index - `IvfRq` - IVF RabitQ Quantization index - `HnswFlat` - HNSW without quantization (stores raw vectors) These classes are exported in `lancedb.index.__all__` and have complete docstrings in the source, but weren't showing up in the rendered docs at https://lancedb.github.io/lancedb/python/python/#indices-asynchronous. Closes #1855 --- docs/src/python/python.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/src/python/python.md b/docs/src/python/python.md index 6dca95ed8..1e928be54 100644 --- a/docs/src/python/python.md +++ b/docs/src/python/python.md @@ -166,6 +166,12 @@ lists the indices that LanceDb supports. ::: lancedb.index.IvfFlat +::: lancedb.index.IvfSq + +::: lancedb.index.IvfRq + +::: lancedb.index.HnswFlat + ::: lancedb.table.IndexStatistics ## Querying (Asynchronous)