""" Hugging Face Spaces Entry Point This file is used when deploying to Hugging Face Spaces """ import sys from pathlib import Path # Add app directory to path sys.path.insert(0, str(Path(__file__).parent)) # Import and run Streamlit app from streamlit_app import * # Note: Hugging Face Spaces will automatically detect streamlit_app.py # But we can also use this as an entry point if needed