moccaram's picture
Replace v1 demo with v2 XGBoost-backed Gradio app (reference-backed rebuild)
8ba081b verified
Raw
History Blame Contribute Delete
368 Bytes
"""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()