From 747bd4f737877a7eca07d3fde8cbbdba505f13bc Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Thu, 4 Dec 2025 15:55:37 -0500 Subject: [PATCH] Tweak the prompt of the thinking + functions example to not confuse Gemini as much (Gemini found the original prompt a bit ambiguous, it seems) --- examples/foundational/49-thinking-functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/foundational/49-thinking-functions.py b/examples/foundational/49-thinking-functions.py index ffc93dd04..e363b87fc 100644 --- a/examples/foundational/49-thinking-functions.py +++ b/examples/foundational/49-thinking-functions.py @@ -169,7 +169,7 @@ async def run_bot( messages.append( { "role": "user", - "content": "Check the status of flight AA100 and book me a taxi 2 hours beforehand if the flight is delayed.", + "content": "Check the status of flight AA100 and, if it's delayed, book me a taxi 2 hours before its departure time.", } ) await task.queue_frames([LLMRunFrame()])