"""Hugging Face Space entry point. A Streamlit Space runs ``streamlit run streamlit_app.py`` from the repo root. Because this file lives at the repo root, the root is on ``sys.path``, so the ``app`` package imports cleanly — no PYTHONPATH juggling needed. All it does is hand off to the real app in :mod:`app.main`. Local desktop users keep launching via the platform launchers / ``desktop_app.py``; this file only exists for the cloud deployment. """ from __future__ import annotations from app.main import main main()