We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9b3c6c commit e64ebcbCopy full SHA for e64ebcb
elysia/tools/retrieval/chunk.py
@@ -246,7 +246,10 @@ async def get_vectoriser(
246
arg: collection_config.vectorizer_config.model[arg]
247
for arg in collection_config.vectorizer_config.model
248
if arg in valid_args and arg != "vector_index_config"
249
- }
+ },
250
+ vector_index_config=Configure.VectorIndex.hnsw(
251
+ quantizer=Configure.VectorIndex.Quantizer.sq() # scalar quantization
252
+ ),
253
)
254
255
# otherwise use default weaviate embedding service
0 commit comments