File size: 271 Bytes
4c07226
26b2b7c
 
 
 
a1ab253
 
 
 
1
2
3
4
5
6
7
8
9
import os
from gradio_two_stage_app import build_interface

if __name__ == "__main__":
    demo = build_interface()
    demo.queue().launch(
        share=True,  # required in HF Spaces when localhost is blocked
        server_port=int(os.environ.get("PORT", 7860))
    )