vineyard03's picture
Upload folder using huggingface_hub
9adf324 verified
raw
history blame contribute delete
208 Bytes
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)