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.