Julien Simon
fix: Update Gradio components for v6.0 API compatibility
29178b4
Raw
History Blame Contribute Delete
361 Bytes
"""
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())