RohanSardar's picture
updated theme
80133ea verified
Raw
History Blame Contribute Delete
255 Bytes
"""
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()
)