Skip to content

Commit 2a26fda

Browse files
committed
fix(qdrant): Update point iteration to access points from search_result
1 parent f380510 commit 2a26fda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

camel/storages/vectordb_storages/qdrant.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ def query(
467467
payload=point.payload,
468468
vector=point.vector, # type: ignore[arg-type]
469469
)
470-
for point in search_result
470+
for point in search_result.points
471471
]
472472

473473
return query_results

0 commit comments

Comments
 (0)