From 48f34b88d6cf1aa8edf4d84a762e96ebf89a7e6e Mon Sep 17 00:00:00 2001 From: William FH <13333726+hinthornw@users.noreply.github.com> Date: Wed, 5 Jun 2024 21:23:46 -0700 Subject: [PATCH] [Docs] Wording nit in docstring (#607) --- langgraph/prebuilt/chat_agent_executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langgraph/prebuilt/chat_agent_executor.py b/langgraph/prebuilt/chat_agent_executor.py index a87d30491..c2f398496 100644 --- a/langgraph/prebuilt/chat_agent_executor.py +++ b/langgraph/prebuilt/chat_agent_executor.py @@ -177,7 +177,7 @@ def create_react_agent( """Creates a graph that works with a chat model that utilizes tool calling. Args: - model: The chat model that supports OpenAI tool calling. + model: The `LangChain` chat model that supports tool calling. tools: A list of tools or a ToolExecutor instance. messages_modifier: An optional messages modifier. This applies to messages BEFORE they are passed into the LLM.