File size: 315 Bytes
dda982a
 
 
 
dbdd7c8
dda982a
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import parsers  # Import all parsers to ensure they're registered
from src.ui.ui import launch_ui

def main():
    # Launch the UI
    launch_ui(
        server_name="0.0.0.0",
        server_port=7860,
        share=False  # Explicitly disable sharing on Hugging Face
    )


if __name__ == "__main__":
    main()