Spaces:
Sleeping
Sleeping
minor change
Browse files- doc_searcher.py +3 -0
doc_searcher.py
CHANGED
|
@@ -118,6 +118,9 @@ class DocSearcher:
|
|
| 118 |
search_result = self.qdrant_client.query_points(
|
| 119 |
collection_name= "sl-list",
|
| 120 |
prefetch=prefetch,
|
|
|
|
|
|
|
|
|
|
| 121 |
with_payload=True,
|
| 122 |
limit = 100,
|
| 123 |
).points
|
|
|
|
| 118 |
search_result = self.qdrant_client.query_points(
|
| 119 |
collection_name= "sl-list",
|
| 120 |
prefetch=prefetch,
|
| 121 |
+
query=models.FusionQuery(
|
| 122 |
+
fusion=models.Fusion.RRF,
|
| 123 |
+
),
|
| 124 |
with_payload=True,
|
| 125 |
limit = 100,
|
| 126 |
).points
|