Skip to content

Commit

Permalink
add default count for qdrant vsd
Browse files Browse the repository at this point in the history
  • Loading branch information
cjkindel committed Jul 12, 2024
1 parent 9fb4dd9 commit 4e1f419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion griptape/drivers/vector/qdrant_vector_store_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def delete_vector(self, vector_id: str) -> None:
def query(
self,
query: str,
count: Optional[int] = None,
count: Optional[int] = BaseVectorStoreDriver.DEFAULT_QUERY_COUNT,
namespace: Optional[str] = None,
include_vectors: bool = False,
**kwargs,
Expand Down

0 comments on commit 4e1f419

Please sign in to comment.