File size: 208 Bytes
9adf324
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr
from components.front_page import create_full_ui

# Create the UI
app = create_full_ui()

# Launch the app
if __name__ == "__main__":
    app.launch(share=True, show_api=False)