Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/oss/langchain/agents.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,13 @@ For more information, see [Tools](/oss/langchain/tools).
Pass a list of tools to the agent.

:::python

<Tip>
Tools can be specified as plain Python functions or coroutines.

The [tool decorator](/oss/langchain/tools#create-tools) can be used to customize tool names, descriptions, argument schemas, and other properties.
</Tip>

```python wrap
from langchain.tools import tool
from langchain.agents import create_agent
Expand Down
Loading