File size: 255 Bytes
88d577b
 
 
 
 
 
 
 
 
 
80133ea
88d577b
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
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()
    )