We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3d88080 + 53f654c commit 2b75028Copy full SHA for 2b75028
2 files changed
weaviate_cli/commands/create.py
@@ -72,6 +72,7 @@ def create() -> None:
72
"hnsw_pq",
73
"hnsw_bq",
74
"hnsw_sq",
75
+ "hnsw_rq",
76
"hnsw_acorn",
77
"hnsw_multivector",
78
"flat_bq",
weaviate_cli/managers/collection_manager.py
@@ -197,6 +197,9 @@ def create_collection(
197
training_limit=training_limit
198
)
199
),
200
+ "hnsw_rq": wvc.Configure.VectorIndex.hnsw(
201
+ quantizer=wvc.Configure.VectorIndex.Quantizer.rq()
202
+ ),
203
"hnsw_acorn": wvc.Configure.VectorIndex.hnsw(
204
filter_strategy=VectorFilterStrategy.ACORN
205
0 commit comments