diff --git a/docs/docs/index.md b/docs/docs/index.md new file mode 100644 index 00000000..b4febe9d --- /dev/null +++ b/docs/docs/index.md @@ -0,0 +1,19 @@ +# Welcome to LanceDB's Documentation + +LanceDB is an open-source, serverless, low-latency vector database for AI applications. + +LanceDB is built with persistent storage as a first class citizen, which simplifies storage, retrieval and filtering for large-scale, cost intensive AI applications. + +The key features of LanceDB include: + +* Scale to billion+ vector-search all without managing servers. + +* Combine attribute-based information with vectors and store them as a single source-of-truth. + +* Zero-copy, automatic versioning, manage versions of your data without needing extra infrastructure. + +* Ecosystem integrations: Apache-Arrow, Pandas, Polars, DuckDB and more on the way. + +## Documentation Quick Links + +* `Quick start` - search and filter a hello world vector dataset with LanceDB using the Python SDK. diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml new file mode 100644 index 00000000..70c3765a --- /dev/null +++ b/docs/mkdocs.yml @@ -0,0 +1,3 @@ +site_name: LanceDB Documentation +theme: + name: material diff --git a/rust/Cargo.lock b/rust/Cargo.lock new file mode 100644 index 00000000..470b46a1 --- /dev/null +++ b/rust/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "lancedb" +version = "0.0.1"