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.
1 parent 896c333 commit 59a1317Copy full SHA for 59a1317
weaviate/collections/classes/config_vector_index.py
@@ -613,6 +613,7 @@ def spfresh(
613
search_probe: Optional[int] = None,
614
centroids_index_type: Optional[VectorCentroidsIndexType] = None,
615
quantizer: Optional[_QuantizerConfigCreate] = None,
616
+ multi_vector: Optional[_MultiVectorConfigCreate] = None,
617
) -> _VectorIndexConfigSPFreshCreate:
618
"""Create a `_VectorIndexConfigSPFreshCreate` object to be used when defining the SPFresh vector index configuration of Weaviate.
619
@@ -630,7 +631,7 @@ def spfresh(
630
631
searchProbe=search_probe,
632
centroidsIndexType=centroids_index_type,
633
quantizer=quantizer,
- multivector=None,
634
+ multivector=multi_vector,
635
)
636
637
@staticmethod
0 commit comments