We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf536a9 commit ea9d3ecCopy full SHA for ea9d3ec
2 files changed
vectordb_bench/backend/clients/qdrant_cloud/qdrant_cloud.py
@@ -205,6 +205,7 @@ def search_embedding(
205
query_filter=self.query_filter,
206
search_params=self.db_case_config.search_param(),
207
with_payload=self.db_case_config.with_payload,
208
+ timeout=timeout,
209
)
210
211
res = points_res.points
vectordb_bench/backend/clients/qdrant_local/qdrant_local.py
@@ -227,6 +227,7 @@ def search_embedding(
227
limit=k,
228
query_filter=f,
229
search_params=SearchParams(**self.search_parameter),
230
231
).points
232
233
return [result.id for result in res]
0 commit comments