From 4e4ca916a16f8385ea5635fffe2dc5ff8d8e6b42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Mata?= Date: Wed, 11 Feb 2026 15:59:12 +0100 Subject: [PATCH] Update backend table with status and requirements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Clarify status of non-OpenAI vector store Signed-off-by: Juan José Mata --- docs/hosting/ai.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/docs/hosting/ai.md b/docs/hosting/ai.md index e25ddec37..0e6d56d1f 100644 --- a/docs/hosting/ai.md +++ b/docs/hosting/ai.md @@ -645,11 +645,11 @@ Sure's AI assistant can search documents that have been uploaded to a family's v #### Supported Backends -| Backend | Best For | Requirements | -|---------|----------|--------------| -| **OpenAI** (default) | Cloud deployments, zero setup | `OPENAI_ACCESS_TOKEN` | -| **Pgvector** | Self-hosted, full data privacy | PostgreSQL with `pgvector` extension | -| **Qdrant** | Self-hosted, dedicated vector DB | Running Qdrant instance | +| Backend | Status | Best For | Requirements | +|---------|--------|----------|--------------| +| **OpenAI** (default) | ready | Cloud deployments, zero setup | `OPENAI_ACCESS_TOKEN` | +| **Pgvector** | scaffolded | Self-hosted, full data privacy | PostgreSQL with `pgvector` extension | +| **Qdrant** | scaffolded | Self-hosted, dedicated vector DB | Running Qdrant instance | #### Configuration @@ -664,6 +664,9 @@ OPENAI_ACCESS_TOKEN=sk-proj-... ##### Pgvector (Self-Hosted) +> [!CAUTION] +> Only `OpenAI` has been implemented! + Use PostgreSQL's pgvector extension for fully local document search: ```bash @@ -674,6 +677,9 @@ VECTOR_STORE_PROVIDER=pgvector ##### Qdrant (Self-Hosted) +> [!CAUTION] +> Only `OpenAI` has been implemented! + Use a dedicated Qdrant vector database: ```bash