improve docs (#1351)

This commit is contained in:
Harrison Chase
2023-02-28 21:37:18 -08:00
committed by GitHub
parent 92ab27e4b8
commit 02ec72df87
3 changed files with 70 additions and 19 deletions

View File

@@ -8,3 +8,8 @@ For more detailed information on agents, and different types of agents in LangCh
Tools are functions that agents can use to interact with the world.
These tools can be generic utilities (e.g. search), other chains, or even other agents.
For more detailed information on tools, and different types of tools in LangChain, see [this documentation](tools.md).
## ToolKits
Toolkits are groups of tools that are best used together.
They allow you to logically group and initialize a set of tools that share a particular resource (such as a database connection or json object).
They can be used to construct an agent for a specific use-case.