test-space / app.py
sachit-sankhe's picture
Update app.py
bc2be98
raw
history blame
159 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text", set=True)
iface.launch()