wfranco's picture
Update app.py
f9d18db
raw
history blame
226 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()