File size: 312 Bytes
22793b0
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# app.py (for Hugging Face Spaces)
"""
Main entry point for Hugging Face Spaces
This file is required by HF Spaces to run the Streamlit app
"""

import subprocess
import sys

# Run the frontend Streamlit app
if __name__ == "__main__":
    subprocess.run([sys.executable, "-m", "streamlit", "run", "frontend.py"])