File size: 277 Bytes
f9306c2 | 1 2 3 4 5 6 7 8 9 10 11 12 | """Hosted Streamlit entrypoint for Hugging Face Spaces."""
from __future__ import annotations
from pathlib import Path
from mathvision_explorer.demo import create_demo_dataset
from mathvision_explorer.streamlit_app import main
create_demo_dataset(Path("data/demo"))
main()
|