cloudatlas / app.py
josephmdev's picture
Add application file
e149358
raw
history blame
160 Bytes
import gradio as gr
def greet(name):
return "Why hello there, " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()