Update backend table with status and requirements

Clarify status of non-OpenAI vector store

Signed-off-by: Juan José Mata <juanjo.mata@gmail.com>
This commit is contained in:
Juan José Mata
2026-02-11 15:59:12 +01:00
committed by GitHub
parent 9e57954a99
commit 4e4ca916a1

View File

@@ -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