From 3a520a1cc20079e5bd3010e507f1fd610ab5c7cf Mon Sep 17 00:00:00 2001 From: Tao Chen Date: Fri, 5 Jun 2026 09:24:17 -0700 Subject: [PATCH] Fix sample --- python/samples/02-agents/tools/function_tool_with_approval.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/samples/02-agents/tools/function_tool_with_approval.py b/python/samples/02-agents/tools/function_tool_with_approval.py index b7e8237caf..42f1da19ea 100644 --- a/python/samples/02-agents/tools/function_tool_with_approval.py +++ b/python/samples/02-agents/tools/function_tool_with_approval.py @@ -155,7 +155,7 @@ async def main() -> None: print("=== Demonstration of a tool with approvals ===\n") await run_weather_agent_with_approval(stream=False) - # await run_weather_agent_with_approval(stream=True) + await run_weather_agent_with_approval(stream=True) if __name__ == "__main__":