From 397f0719d61252f904937b0a338a46df0d9330ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Tue, 14 Nov 2023 12:46:26 -0300 Subject: [PATCH] Updated Agent Tools (markdown) --- Agent-Tools.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Agent-Tools.md b/Agent-Tools.md index 33e03c5..e6528a5 100644 --- a/Agent-Tools.md +++ b/Agent-Tools.md @@ -9,9 +9,7 @@ These tools can be as straightforward as a search function or as sophisticated a - **Integration**: Tools can be integrated into agents to extend their capabilities beyond their basic functions. - **Customizability**: Developers can create custom tools tailored to the specific needs of their agents or use pre-built LangChain ones available in the ecosystem. -# Creating and Assigning Tools - -## Creating your own Tools +# Creating your own Tools You can easily create your own tool using [LangChain Tool Custom Tool Creation](https://python.langchain.com/docs/modules/agents/tools/custom_tools). @@ -51,7 +49,7 @@ agent = Agent( ) ``` -## Using Existing Tools +# Using Existing Tools Check [LangChain Integration](https://python.langchain.com/docs/integrations/tools/) for a set of useful existing tools. To assign a tool to an agent, you'd provide it as part of the agent's properties during initialization.