File size: 183 Bytes
8366946
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
"""Entry point for the application."""

from src.ui.gradio_app import build_ui

demo = build_ui()

if __name__ == "__main__":
    demo.launch(server_name="0.0.0.0", server_port=7860)