File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
src/neo4j_graphrag/retrievers/external/qdrant Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ def __init__(
91
91
collection_name : str ,
92
92
id_property_neo4j : str ,
93
93
id_property_external : str = "id" ,
94
- using :Optional [str ] = None ,
94
+ using : Optional [str ] = None ,
95
95
embedder : Optional [Embedder ] = None ,
96
96
return_properties : Optional [list [str ]] = None ,
97
97
retrieval_query : Optional [str ] = None ,
@@ -206,7 +206,7 @@ def get_search_results(
206
206
207
207
points = self .client .query_points (
208
208
collection_name = self .collection_name ,
209
- query = query_vector ,
209
+ query = query_vector ,
210
210
using = self .using ,
211
211
limit = top_k ,
212
212
with_payload = [self .id_property_external ],
@@ -241,4 +241,3 @@ def get_search_results(
241
241
)
242
242
243
243
return RawSearchResult (records = records )
244
-
Original file line number Diff line number Diff line change @@ -54,4 +54,3 @@ class QdrantNeo4jRetrieverModel(BaseModel):
54
54
retrieval_query : Optional [str ] = None
55
55
result_formatter : Optional [Callable [[neo4j .Record ], RetrieverResultItem ]] = None
56
56
neo4j_database : Optional [str ] = None
57
-
You can’t perform that action at this time.
0 commit comments