File size: 277 Bytes
e365a68
 
 
 
68aebec
e365a68
 
68aebec
1
2
3
4
5
6
7
8
9
from src.ui import build_ui

if __name__ == "__main__":
    # Build the user interface
    ui, output_dir = build_ui()
    
    # Launch the UI in the browser with access to the "output" folder
    ui.launch(server_name="0.0.0.0", server_port=7860, allowed_paths=[output_dir])