From b92eb988b69343ddbb19bd704d9a801b1a9a93d1 Mon Sep 17 00:00:00 2001 From: gsilvestrin Date: Thu, 20 Apr 2023 11:51:42 -0700 Subject: [PATCH 1/2] add ann_index to main doc page --- docs/mkdocs.yml | 1 + docs/src/index.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 17405f9fa..8f2edc705 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -15,6 +15,7 @@ nav: - Home: index.md - Basics: basic.md - Embeddings: embedding.md +- ANNIndexes: ann_indexes.md - Integrations: integrations.md - Python API: python.md diff --git a/docs/src/index.md b/docs/src/index.md index 5a6ea068f..c3798e3f3 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -42,5 +42,6 @@ We will be adding completed demo apps built using LanceDB. ## Documentation Quick Links * [`Basic Operations`](basic.md) - basic functionality of LanceDB. * [`Embedding Functions`](embedding.md) - functions for working with embeddings. +* [`ANN Indexes`](ann_indexes.md) - create vector indexes to speed up queries. * [`Ecosystem Integrations`](integrations.md) - integrating LanceDB with python data tooling ecosystem. * [`API Reference`](python.md) - detailed documentation for the LanceDB Python SDK. From 78e4f4d1a80548c947e513e898af590274e55e7e Mon Sep 17 00:00:00 2001 From: gsilvestrin Date: Thu, 20 Apr 2023 13:19:10 -0700 Subject: [PATCH 2/2] add ann_index to main doc page --- docs/mkdocs.yml | 2 +- docs/src/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 8f2edc705..8e9d39548 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -15,7 +15,7 @@ nav: - Home: index.md - Basics: basic.md - Embeddings: embedding.md -- ANNIndexes: ann_indexes.md +- Indexing: ann_indexes.md - Integrations: integrations.md - Python API: python.md diff --git a/docs/src/index.md b/docs/src/index.md index c3798e3f3..f9fe97c25 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -42,6 +42,6 @@ We will be adding completed demo apps built using LanceDB. ## Documentation Quick Links * [`Basic Operations`](basic.md) - basic functionality of LanceDB. * [`Embedding Functions`](embedding.md) - functions for working with embeddings. -* [`ANN Indexes`](ann_indexes.md) - create vector indexes to speed up queries. +* [`Indexing`](ann_indexes.md) - create vector indexes to speed up queries. * [`Ecosystem Integrations`](integrations.md) - integrating LanceDB with python data tooling ecosystem. * [`API Reference`](python.md) - detailed documentation for the LanceDB Python SDK.