From 1eae5de7af1289b986c8109bb2b466d72f07bb7c Mon Sep 17 00:00:00 2001 From: Andrew <15331990+ahuang11@users.noreply.github.com> Date: Sat, 21 Sep 2024 13:56:06 -0700 Subject: [PATCH] Remove comma from pip install --- docs/patterns/tools.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/patterns/tools.mdx b/docs/patterns/tools.mdx index 87c141f2..fd73734d 100644 --- a/docs/patterns/tools.mdx +++ b/docs/patterns/tools.mdx @@ -139,7 +139,7 @@ LangChain has many [pre-built tools](https://python.langchain.com/v0.2/docs/inte First, install the dependencies: ```bash -pip install -U langchain-community, duckduckgo-search +pip install -U langchain-community duckduckgo-search ``` Then import the tool for use: @@ -251,4 +251,4 @@ Tools are particularly useful in scenarios where: By providing appropriate tools, you can significantly enhance the problem-solving capabilities of your AI agents and create more powerful and flexible workflows. -While tools are powerful, they should be used judiciously. Provide only the tools that are necessary for the task at hand to avoid overwhelming the agent with too many options. \ No newline at end of file +While tools are powerful, they should be used judiciously. Provide only the tools that are necessary for the task at hand to avoid overwhelming the agent with too many options.