Spaces:
Running
Running
# 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"]) |