You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/docs/modules/agents/key_concepts.md

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