Added agent.ui shorthand

This commit is contained in:
Dillon DuPont
2025-06-17 12:53:18 -04:00
parent 2f472ffe16
commit cd64df770f

View File

@@ -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)