From 6e13614731b44e1194ad3e4d8e87d2df0ae763d0 Mon Sep 17 00:00:00 2001 From: Nobuhiro Oto Date: Fri, 7 Feb 2025 11:39:02 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=97=20fix:=20broken=20link=20in=20tool?= =?UTF-8?q?s=5Fand=5Fplugins.mdx=20(#209)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated moved link --- pages/docs/development/tools_and_plugins.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/docs/development/tools_and_plugins.mdx b/pages/docs/development/tools_and_plugins.mdx index 47e5581..dab7179 100644 --- a/pages/docs/development/tools_and_plugins.mdx +++ b/pages/docs/development/tools_and_plugins.mdx @@ -13,7 +13,7 @@ Creating custom plugins for this project involves extending the `Tool` class fro **Note:** I will use the word plugin interchangeably with tool, as the latter is specific to LangChain, and we are mainly conforming to the library. -You are essentially creating DynamicTools in LangChain speak. See the **[LangChainJS docs](https://js.langchain.com/docs/modules/agents/tools/dynamic)** for more info. +You are essentially creating DynamicTools in LangChain speak. See the **[LangChainJS docs](https://js.langchain.com/docs/how_to/custom_tools/)** for more info. This guide will walk you through the process of creating your own custom plugins, using the `StableDiffusionAPI` and `WolframAlphaAPI` tools as examples.