Spaces:
Build error
Build error
File size: 198 Bytes
e8248b5 | 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)
|