#!/usr/bin/env python3 """ Hugging Face Spaces App Entry Point """ import sys from pathlib import Path # Add current directory to path sys.path.append(str(Path(__file__).parent)) # Import and run the existing Gradio app from frontend.gradio_app import main if __name__ == "__main__": main()