From 77b101669420c6dcc1bb94fce2384964b4d69cb0 Mon Sep 17 00:00:00 2001 From: Chester Curme Date: Fri, 14 Nov 2025 10:21:59 -0500 Subject: [PATCH] add callout --- src/oss/langchain/agents.mdx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/oss/langchain/agents.mdx b/src/oss/langchain/agents.mdx index 23dd13c9f2..3f37243bca 100644 --- a/src/oss/langchain/agents.mdx +++ b/src/oss/langchain/agents.mdx @@ -233,6 +233,13 @@ For more information, see [Tools](/oss/langchain/tools). Pass a list of tools to the agent. :::python + + +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. + + ```python wrap from langchain.tools import tool from langchain.agents import create_agent