Skip to content

Commit

Permalink
Fixes issue-14295: Correctly pass along the kwargs (#14296)
Browse files Browse the repository at this point in the history
- **Description:** Update code to correctly pass the kwargs 
  - **Issue:** #14295 
  - **Dependencies:**  - 
  - **Tag maintainer:** 

<--
If no one reviews your PR within a few days, please @-mention one of
@baskaryan, @eyurtsev, @hwchase17.
 -->

#issue-14295
  • Loading branch information
timvw authored Dec 6, 2023
1 parent 62b5904 commit 85b88c3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ def add_texts(
metadatas=metadatas,
ids=ids,
bulk_size=bulk_size,
kwargs=kwargs,
**kwargs,
)

def add_embeddings(
Expand Down Expand Up @@ -451,7 +451,7 @@ def add_embeddings(
metadatas=metadatas,
ids=ids,
bulk_size=bulk_size,
kwargs=kwargs,
**kwargs,
)

def similarity_search(
Expand Down

0 comments on commit 85b88c3

Please sign in to comment.