From cd64df770f92d986cd218c6a550c83beda8f11a7 Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Tue, 17 Jun 2025 12:53:18 -0400 Subject: [PATCH] Added agent.ui shorthand --- libs/agent/agent/ui/__main__.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 libs/agent/agent/ui/__main__.py diff --git a/libs/agent/agent/ui/__main__.py b/libs/agent/agent/ui/__main__.py new file mode 100644 index 00000000..a40684a8 --- /dev/null +++ b/libs/agent/agent/ui/__main__.py @@ -0,0 +1,15 @@ +""" +Main entry point for agent.ui module. + +This allows running the agent UI with: + python -m agent.ui + +Instead of: + python -m agent.ui.gradio.app +""" + +from .gradio.app import create_gradio_ui + +if __name__ == "__main__": + app = create_gradio_ui() + app.launch(share=False, inbrowser=True)