From 94c06c55e8904a1ee2cee07558d36b10eabec31a Mon Sep 17 00:00:00 2001 From: Yong723 <50616781+Yongtae723@users.noreply.github.com> Date: Tue, 10 Jan 2023 12:12:59 +0900 Subject: [PATCH] modify docstring (#569) Sorry for the detail. this is a correction to the docstring. --- langchain/agents/loading.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/langchain/agents/loading.py b/langchain/agents/loading.py index a0ad6547645..bb76fb7ff9a 100644 --- a/langchain/agents/loading.py +++ b/langchain/agents/loading.py @@ -31,7 +31,10 @@ def initialize_agent( tools: List of tools this agent has access to. llm: Language model to use as the agent. agent: The agent to use. Valid options are: - `zero-shot-react-description`, `react-docstore`, `self-ask-with-search`. + `zero-shot-react-description` + `react-docstore` + `self-ask-with-search` + `conversational-react-description`. callback_manager: CallbackManager to use. Global callback manager is used if not provided. Defaults to None. **kwargs: Additional key word arguments to pass to the agent.