mylesAI_test / app.py
royalonsarms's picture
Create app.py
7563d0d
raw
history blame
No virus
128 Bytes
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()