File size: 361 Bytes
eeca514
c319b15
eeca514
c319b15
eeca514
 
29178b4
 
c319b15
29178b4
ab96bbb
 
c319b15
29178b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
Main entry point for the Gradio web application.

This module provides a simple entry point that delegates to the UI module.
"""

import gradio as gr

from ui.app import create_app
from ui.components import CUSTOM_CSS

if __name__ == "__main__":
    demo = create_app()
    demo.launch(share=False, server_port=7860, css=CUSTOM_CSS, theme=gr.themes.Soft())