# app.py - Entry point for Hugging Face Space # This file imports and launches the Gradio app from gradio_app.py # Import the demo app from gradio_app.py from gradio_app import demo # Launch the app when this file is run if __name__ == "__main__": # Using a simplified launch configuration for Hugging Face Spaces demo.launch()