Spaces:
Sleeping
Sleeping
| """ | |
| Entry point for Hugging Face Spaces deployment. | |
| Hugging Face Spaces expects an `app.py` file in the root directory. | |
| """ | |
| import gradio as gr | |
| from src.ui.app import app | |
| if __name__ == "__main__": | |
| app.launch( | |
| theme=gr.themes.Citrus() | |
| ) | |