From 7a55fb2600c52838f59af04e4517bca4335ffbff Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Wed, 28 May 2025 15:30:26 -0400 Subject: [PATCH] Launch gradio UI with inbrowser=True when using cli --- libs/agent/agent/ui/gradio/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/agent/agent/ui/gradio/app.py b/libs/agent/agent/ui/gradio/app.py index fdf0276e..98d115a0 100644 --- a/libs/agent/agent/ui/gradio/app.py +++ b/libs/agent/agent/ui/gradio/app.py @@ -1450,7 +1450,7 @@ if __name__ == "__main__": def test_cua(): """Standalone function to launch the Gradio app.""" demo = create_gradio_ui() - demo.launch(share=False) # Don't create a public link + demo.launch(share=False, inbrowser=True) # Don't create a public link if __name__ == "__main__":