File size: 369 Bytes
41f69c3
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import os
import runpy

# Streamlit App Entrypoint for Hugging Face Spaces & Streamlit Cloud
# This replaces Hugging Face's boilerplate template and redirects to our real app in scripts/app.py
if __name__ == "__main__":
    script_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "scripts", "app.py")
    runpy.run_path(script_path, run_name="__main__")