mcp-stock-math / app.py
Entz's picture
Upload 6 files
22793b0 verified
raw
history blame
312 Bytes
# 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"])