Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix chroma _similarity_search_with_relevance_scores missing kwargs #6708

Merged
merged 1 commit into from
Jun 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion langchain/vectorstores/chroma.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def _similarity_search_with_relevance_scores(
k: int = 4,
**kwargs: Any,
) -> List[Tuple[Document, float]]:
return self.similarity_search_with_score(query, k)
return self.similarity_search_with_score(query, k, **kwargs)

def max_marginal_relevance_search_by_vector(
self,
Expand Down