Spaces:
Runtime error
Runtime error
File size: 322 Bytes
e07b55c 1738c66 e07b55c 1738c66 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import gradio as gr
def update(name):
return f"Welcome to Gradio, {name}!"
with gr.Blocks() as app:
gr.Markdown("### Start typing below and then click **Run** to see the output.")
with gr.Column():
gr.File(interactive=False)
gr.UploadButton(label="Upload an executable file")
app.launch()
|