hello_worldz / run.py
hmb's picture
hmb HF staff
Rename app.py to run.py
39da7cd verified
raw
history blame
176 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs=["text", "state"], outputs=["text", "state"])
demo.launch()