Skip to content

Commit

Permalink
add **kwargs at pass_passage_augmenter (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwook00 authored May 15, 2024
1 parent 2700d8a commit ffc745b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion autorag/nodes/passageaugmenter/pass_passage_augmenter.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@


@passage_augmenter_node
def pass_passage_augmenter(ids_list: List[List[str]], contents_list: List[List[str]], scores_list: List[List[float]]):
def pass_passage_augmenter(ids_list: List[List[str]],
contents_list: List[List[str]],
scores_list: List[List[float]],
**kwargs):
"""
Do not perform augmentation.
Return given passages, scores, and ids as is.
Expand Down

0 comments on commit ffc745b

Please sign in to comment.