Skip to content

Commit

Permalink
FIX: proper name for the sort param (#454)
Browse files Browse the repository at this point in the history
  • Loading branch information
erichare authored Feb 21, 2024
1 parent 94cd08d commit 17faf53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def _query(self, vector, top_k, filters=None):
def find_documents(self, find_query):
response_dict = self._astra_db_collection.find(
filter=find_query.get("filter"),
projection=find_query.get("sort"),
sort=find_query.get("sort"),
options=find_query.get("options"),
)

Expand Down

0 comments on commit 17faf53

Please sign in to comment.