Spaces:
Sleeping
Sleeping
| """Hugging Face Spaces entry point. Delegates to src.app for the real interface.""" | |
| import sys | |
| from pathlib import Path | |
| # Make src/ importable when the Space launches this file from the repo root. | |
| sys.path.insert(0, str(Path(__file__).resolve().parent)) | |
| from src.app import build_interface | |
| if __name__ == "__main__": | |
| demo = build_interface() | |
| demo.launch() | |