File size: 527 Bytes
6303ae6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""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()