hello-input / app.py
wangli
feat: init
712b87e
raw
history blame
No virus
151 Bytes
import gradio as gr
def greet(input):
return "Hello " + input + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()