From 61ab1b12663831694051f3b9e2b05ff69a973ca1 Mon Sep 17 00:00:00 2001 From: Yeonji-Lim <57888020+Yeonji-Lim@users.noreply.github.com> Date: Mon, 2 Oct 2023 04:55:11 +0900 Subject: [PATCH] Fix typo in docstring (#11256) Description : Remove meaningless 's' in docstring --- libs/langchain/langchain/agents/agent.py | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/langchain/langchain/agents/agent.py b/libs/langchain/langchain/agents/agent.py index 67fbfbe81020e..f46e1595c3dea 100644 --- a/libs/langchain/langchain/agents/agent.py +++ b/libs/langchain/langchain/agents/agent.py @@ -750,7 +750,6 @@ class AgentExecutor(Chain): ] = False """How to handle errors raised by the agent's output parser. Defaults to `False`, which raises the error. -s If `true`, the error will be sent back to the LLM as an observation. If a string, the string itself will be sent to the LLM as an observation. If a callable function, the function will be called with the exception