demo / app.py
John Yan
Add application file
27f66e6
raw
history blame
170 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!" + "and hello world"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()