test-template-2 / gradio_app.py
pablovela5620's picture
Upload gradio_app.py with huggingface_hub
cf97a3e verified
Raw
History Blame Contribute Delete
220 Bytes
import gradio as gr
from zero_spaces_template.gradio_ui.example_ui import ui_block
with gr.Blocks() as demo:
with gr.Tab(label="Example UI"):
ui_block.render()
if __name__ == "__main__":
demo.launch()