Spaces:
Sleeping
Sleeping
File size: 337 Bytes
503805a | 1 2 3 4 5 6 7 8 9 10 | # 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() |