docs: fix kwargs docstring (#25010)

Fix:
![Screenshot 2024-08-02 at 5 33 37
PM](https://github.com/user-attachments/assets/7c56cdeb-ee81-454c-b3eb-86aa8a9bdc8d)
This commit is contained in:
Bagatur
2024-08-02 19:54:54 -07:00
committed by GitHub
parent 57747892ce
commit e81ddb32a6
61 changed files with 143 additions and 143 deletions

View File

@@ -179,7 +179,7 @@ class BaseRetriever(RunnableSerializable[RetrieverInput, RetrieverOutput], ABC):
Args:
input: The query string.
config: Configuration for the retriever. Defaults to None.
**kwargs: Additional arguments to pass to the retriever.
kwargs: Additional arguments to pass to the retriever.
Returns:
List of relevant documents.
@@ -238,7 +238,7 @@ class BaseRetriever(RunnableSerializable[RetrieverInput, RetrieverOutput], ABC):
Args:
input: The query string.
config: Configuration for the retriever. Defaults to None.
**kwargs: Additional arguments to pass to the retriever.
kwargs: Additional arguments to pass to the retriever.
Returns:
List of relevant documents.
@@ -343,7 +343,7 @@ class BaseRetriever(RunnableSerializable[RetrieverInput, RetrieverOutput], ABC):
and passed as arguments to the handlers defined in `callbacks`.
Defaults to None.
run_name: Optional name for the run. Defaults to None.
**kwargs: Additional arguments to pass to the retriever.
kwargs: Additional arguments to pass to the retriever.
Returns:
List of relevant documents.
@@ -387,7 +387,7 @@ class BaseRetriever(RunnableSerializable[RetrieverInput, RetrieverOutput], ABC):
and passed as arguments to the handlers defined in `callbacks`.
Defaults to None.
run_name: Optional name for the run. Defaults to None.
**kwargs: Additional arguments to pass to the retriever.
kwargs: Additional arguments to pass to the retriever.
Returns:
List of relevant documents.