mirror of
https://github.com/hwchase17/langchain.git
synced 2026-01-24 05:50:18 +00:00
Co-authored-by: jacoblee93 <jacoblee93@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
18 lines
429 B
Plaintext
18 lines
429 B
Plaintext
---
|
|
sidebar_position: 2
|
|
---
|
|
# Tools
|
|
|
|
Tools are interfaces that an agent can use to interact with the world.
|
|
|
|
## Get started
|
|
|
|
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.
|
|
|
|
Currently, tools can be loaded with the following snippet:
|
|
|
|
import GetStarted from "@snippets/modules/agents/tools/get_started.mdx"
|
|
|
|
<GetStarted/>
|