From 6bc66307272482a16e337853a8851455e6884083 Mon Sep 17 00:00:00 2001 From: Shaurya Rohatgi Date: Wed, 20 Dec 2023 16:37:00 -0500 Subject: [PATCH] fix: URL to langchain agents page (#942) Co-authored-by: Shyamal H Anadkat --- examples/How_to_build_a_tool-using_agent_with_Langchain.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/How_to_build_a_tool-using_agent_with_Langchain.ipynb b/examples/How_to_build_a_tool-using_agent_with_Langchain.ipynb index 061ec796..7c433d93 100644 --- a/examples/How_to_build_a_tool-using_agent_with_Langchain.ipynb +++ b/examples/How_to_build_a_tool-using_agent_with_Langchain.ipynb @@ -185,7 +185,7 @@ "source": [ "## LLM Agent\n", "\n", - "An [LLM agent](https://python.langchain.com/en/latest/modules/agents/agents/custom_llm_agent.html) in Langchain has many configurable components, which are detailed in the Langchain documentation.\n", + "An [LLM agent](https://python.langchain.com/docs/modules/agents/) in Langchain has many configurable components, which are detailed in the Langchain documentation.\n", "\n", "We'll employ a few of the core concepts to make an agent that talks in the way we want, can use tools to answer questions, and uses the appropriate language model to power the conversation.\n", "- **Prompt Template:** The input template to control the LLM's behaviour and how it accepts inputs and produces outputs - this is the brain that drives your application ([docs](https://python.langchain.com/en/latest/modules/prompts/prompt_templates.html)).\n",