Spaces:
Sleeping
Sleeping
File size: 247 Bytes
0b86da8 | 1 2 3 4 5 6 7 8 9 10 | from src.app import build_app
# Entry point for Hugging Face Spaces
app = build_app()
if __name__ == "__main__":
# Note: Hugging Face handles the port and sharing automatically.
# We do NOT use share=True here.
app.launch()
|