example-hello / app.py
akhaliq's picture
akhaliq HF Staff
Create new file
625df47
raw
history blame contribute delete
392 Bytes
import gradio as gr
def update(name):
return f"Welcome to EuroPython 2022, {name}!"
demo = gr.Blocks()
with demo:
gr.Markdown(
"""
# Hello World!
Start typing below to see the output.
""")
inp = gr.Textbox(placeholder="What is your name?")
out = gr.Textbox()
inp.change(fn=update,
inputs=inp,
outputs=out)
demo.launch()