From c37da6ab78974ad1bc371d0cdf31ac6e78447485 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Tue, 9 Dec 2025 16:53:18 -0500 Subject: [PATCH] In the AWS Nova Sonic example, shorten the simulated weather function call delay --- examples/foundational/40-aws-nova-sonic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/foundational/40-aws-nova-sonic.py b/examples/foundational/40-aws-nova-sonic.py index c97261e97..4b389b648 100644 --- a/examples/foundational/40-aws-nova-sonic.py +++ b/examples/foundational/40-aws-nova-sonic.py @@ -44,7 +44,7 @@ async def fetch_weather_from_api(params: FunctionCallParams): # You can continue chatting while waiting for this to complete. # With Nova 2 Sonic (the default model), the assistant will respond # appropriately once the function call is complete. - await asyncio.sleep(10) + await asyncio.sleep(5) await params.result_callback( { "conditions": "nice",