From 47fa8e87b1b1553f1733dd1909b784cedbc98872 Mon Sep 17 00:00:00 2001 From: Sarmad Gulzar Date: Fri, 30 May 2025 02:24:31 +0500 Subject: [PATCH] Fixed Python syntax (#665) --- docs/tools.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools.md b/docs/tools.md index 89e28d9..4e9a20d 100644 --- a/docs/tools.md +++ b/docs/tools.md @@ -270,7 +270,7 @@ The `agent.as_tool` function is a convenience method to make it easy to turn an ```python @function_tool async def run_my_agent() -> str: - """A tool that runs the agent with custom configs". + """A tool that runs the agent with custom configs""" agent = Agent(name="My agent", instructions="...")