Spaces:
Sleeping
Sleeping
File size: 368 Bytes
8ba081b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """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()
|