From b79dffeca4777b81990b4cb7fb99abc196d050c1 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 16 Dec 2025 22:06:49 +0000 Subject: [PATCH] feat: Enable flash mode for Agent in bu_oss example Co-authored-by: mailmertunsal --- examples/models/bu_oss.py | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/models/bu_oss.py b/examples/models/bu_oss.py index 92c708c72..9a6355e5f 100644 --- a/examples/models/bu_oss.py +++ b/examples/models/bu_oss.py @@ -25,5 +25,6 @@ llm = ChatBrowserUse( agent = Agent( task='Find the number of stars of browser-use and stagehand. Tell me which one has more stars :)', llm=llm, + flash_mode=True, ) agent.run_sync()