mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-01 11:02:37 +00:00
docs: fix kwargs docstring (#25010)
Fix: 
This commit is contained in:
@@ -25,7 +25,7 @@ def create_csv_agent(
|
||||
path: A string path, file-like object or a list of string paths/file-like
|
||||
objects that can be read in as pandas DataFrames with pd.read_csv().
|
||||
pandas_kwargs: Named arguments to pass to pd.read_csv().
|
||||
**kwargs: Additional kwargs to pass to langchain_experimental.agents.agent_toolkits.pandas.base.create_pandas_dataframe_agent().
|
||||
kwargs: Additional kwargs to pass to langchain_experimental.agents.agent_toolkits.pandas.base.create_pandas_dataframe_agent().
|
||||
|
||||
Returns:
|
||||
An AgentExecutor with the specified agent_type agent and access to
|
||||
|
@@ -352,7 +352,7 @@ class DiffbotGraphTransformer:
|
||||
|
||||
Args:
|
||||
documents (Sequence[Document]): The original documents.
|
||||
**kwargs: Additional keyword arguments.
|
||||
kwargs: Additional keyword arguments.
|
||||
|
||||
Returns:
|
||||
Sequence[GraphDocument]: The transformed documents as graphs.
|
||||
|
@@ -774,7 +774,7 @@ class LLMGraphTransformer:
|
||||
|
||||
Args:
|
||||
documents (Sequence[Document]): The original documents.
|
||||
**kwargs: Additional keyword arguments.
|
||||
kwargs: Additional keyword arguments.
|
||||
|
||||
Returns:
|
||||
Sequence[GraphDocument]: The transformed documents as graphs.
|
||||
|
@@ -89,7 +89,7 @@ class RelikGraphTransformer:
|
||||
|
||||
Args:
|
||||
documents (Sequence[Document]): The original documents.
|
||||
**kwargs: Additional keyword arguments.
|
||||
kwargs: Additional keyword arguments.
|
||||
|
||||
Returns:
|
||||
Sequence[GraphDocument]: The transformed documents as graphs.
|
||||
|
@@ -41,7 +41,7 @@ def create_openai_data_generator(
|
||||
from the function types.
|
||||
|
||||
|
||||
**kwargs: Additional keyword arguments to be passed to
|
||||
kwargs: Additional keyword arguments to be passed to
|
||||
`create_structured_output_chain`.
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user