From ffdc37020037cf36daa48a91a1b6784a3a097f7a Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sun, 8 Sep 2024 09:07:26 +0900 Subject: [PATCH] docs: update agent_executor.ipynb (#26035) initalize -> initialize Co-authored-by: Erick Friis --- docs/docs/how_to/agent_executor.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/how_to/agent_executor.ipynb b/docs/docs/how_to/agent_executor.ipynb index e6a357e3ca9..9c59f569e43 100644 --- a/docs/docs/how_to/agent_executor.ipynb +++ b/docs/docs/how_to/agent_executor.ipynb @@ -461,7 +461,7 @@ "id": "f8014c9d", "metadata": {}, "source": [ - "Now, we can initalize the agent with the LLM, the prompt, and the tools. The agent is responsible for taking in input and deciding what actions to take. Crucially, the Agent does not execute those actions - that is done by the AgentExecutor (next step). For more information about how to think about these components, see our [conceptual guide](/docs/concepts/#agents).\n", + "Now, we can initialize the agent with the LLM, the prompt, and the tools. The agent is responsible for taking in input and deciding what actions to take. Crucially, the Agent does not execute those actions - that is done by the AgentExecutor (next step). For more information about how to think about these components, see our [conceptual guide](/docs/concepts/#agents).\n", "\n", "Note that we are passing in the `model`, not `model_with_tools`. That is because `create_tool_calling_agent` will call `.bind_tools` for us under the hood." ]