testspace / app.py
kalpapathiraja's picture
Upload app.py
b25da3d verified
raw
history blame
169 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
#creating interface
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()