diff --git a/langchain/vectorstores/deeplake.py b/langchain/vectorstores/deeplake.py index fbe2f6f7..dc9a2106 100644 --- a/langchain/vectorstores/deeplake.py +++ b/langchain/vectorstores/deeplake.py @@ -450,6 +450,7 @@ class DeepLake(VectorStore): fetch_k=fetch_k, use_maximal_marginal_relevance=True, lambda_mult=lambda_mult, + **kwargs, ) def max_marginal_relevance_search( @@ -484,6 +485,7 @@ class DeepLake(VectorStore): fetch_k=fetch_k, use_maximal_marginal_relevance=True, lambda_mult=lambda_mult, + **kwargs, ) @classmethod