Aly Hassan Kamel
Upload 48 files (#1)
a37d0db
Raw
History Blame Contribute Delete
276 Bytes
"""
Hugging Face Spaces entrypoint.
Spaces expect `app.py` at the repository root. It re-exports the Gradio demo
defined in app_gradio.py (same UI, GRADIO_SPACE env already set there).
"""
from app_gradio import demo
if __name__ == "__main__":
demo.launch()