Updated Agent Tools (markdown)

João Moura
2023-11-14 12:46:26 -03:00
parent 3d95097dc1
commit 397f0719d6

@@ -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.