langchain/docs/modules/agents/key_concepts.md
Vincent Liao cf9c3f54f7
docs: add docs link to agent toolkits (#1735)
New to Langchain, was a bit confused where I should find the toolkits
section when I'm at `agent/key_concepts` docs. I added a short link that
points to the how to section.
2023-03-17 07:59:49 -07:00

939 B

Key Concepts

Agents

Agents use an LLM to determine which actions to take and in what order. For more detailed information on agents, and different types of agents in LangChain, see this documentation.

Tools

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.

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. For more detailed information on toolkits and their use cases, see this documentation (the "Agent Toolkits" section).