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 5e05060 commit c96af5cCopy full SHA for c96af5c
src/neo4j_graphrag/retrievers/external/qdrant/qdrant.py
@@ -211,7 +211,7 @@ def get_search_results(
211
for point in points:
212
assert point.payload is not None
213
result_tuples.append(
214
- [f"{point.payload[self.id_property_external]}", point.score]
+ [point.payload.get(self.id_property_external, point.id), point.score]
215
)
216
217
search_query = get_match_query(
0 commit comments