chore: format

This commit is contained in:
Timothy Jaeryang Baek
2025-11-19 03:23:33 -05:00
parent 3d50d5ff77
commit a1d09eae95
66 changed files with 964 additions and 211 deletions

View File

@@ -209,9 +209,7 @@ class PgvectorClient(VectorDBBase):
index_method = "ivfflat"
if index_method == "hnsw":
index_options = (
f"WITH (m = {PGVECTOR_HNSW_M}, ef_construction = {PGVECTOR_HNSW_EF_CONSTRUCTION})"
)
index_options = f"WITH (m = {PGVECTOR_HNSW_M}, ef_construction = {PGVECTOR_HNSW_EF_CONSTRUCTION})"
else:
index_options = f"WITH (lists = {PGVECTOR_IVFFLAT_LISTS})"