KomaAl's picture
Update app.py
a1ab253 verified
raw
history blame
271 Bytes
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))
)