File size: 274 Bytes
deb0a6d
8af31af
deb0a6d
 
8a3861b
 
 
dea6b1e
8a3861b
 
1
2
3
4
5
6
7
8
9
10
11
# app.py at repo root
from src.app import demo

if __name__ == "__main__":
    demo.launch(
        server_name="0.0.0.0",
        server_port=7860,
        share=True,  # Enable sharing via Gradio's temporary URLs
        show_api=True  # Shows the API documentation
    )