test / app.py
rohanphadke's picture
Update app.py
ecc4ab1
raw
history blame contribute delete
149 Bytes
from gradio import Interface
def greet(name):
return "Hello " + name + "!!"
iface = Interface(fn=greet, inputs="text", outputs="text").launch()