From 0e9b29ca22fffa7d0fbde7fbf8f224a4e9fbfaf3 Mon Sep 17 00:00:00 2001 From: Chris Pietschmann Date: Sun, 7 Dec 2025 11:23:31 -0500 Subject: [PATCH] fix docs icon --- docs/docs/persistence/index.md | 2 +- docs/mkdocs.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/docs/persistence/index.md b/docs/docs/persistence/index.md index cf5c3c7..b59db19 100644 --- a/docs/docs/persistence/index.md +++ b/docs/docs/persistence/index.md @@ -99,7 +99,7 @@ await vdb.DeserializeFromBinaryStreamAsync(stream); --- -## :material-file-database: BasicDiskVectorDatabase +## :material-database-outline: BasicDiskVectorDatabase The `BasicDiskVectorDatabase` provides a basic vector database implementation that automatically stores the vector store and vocabulary store to disk. It's implmentation of vectorization is the same as the `BasicMemoryVectorDatabase`, but with the modification that it automatically persists the database to disk in the background to the specified folder path. diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 34241dd..c83ec0f 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -163,6 +163,7 @@ nav: - persistence/index.md - File Persistence: persistence/#file-persistence - Persist to Stream: persistence/#persist-to-stream + - BasicDiskVectorDatabase: persistence/#basicdiskvectordatabase - Embeddings: - embeddings/index.md - OpenAI Embeddings: embeddings/openai/index.md