HNSW support for pgvector (#2139)

This commit is contained in:
Dev Khant
2025-01-11 23:46:42 +05:30
committed by GitHub
parent 6851fac327
commit 7397279872
3 changed files with 17 additions and 5 deletions

View File

@@ -37,4 +37,5 @@ Here's the parameters available for configuring pgvector:
| `password` | Password to connect to the database | `None` |
| `host` | The host where the Postgres server is running | `None` |
| `port` | The port where the Postgres server is running | `None` |
| `diskann` | Whether to use diskann for vector similarity search (requires pgvectorscale) | `True` |
| `diskann` | Whether to use diskann for vector similarity search (requires pgvectorscale) | `True` |
| `hnsw` | Whether to use hnsw for vector similarity search | `False` |