what_is_it / app.py
ishvalin's picture
added app.py
84ca1d1
raw
history blame
150 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()