newpublic / app.py
Amin Ghaderi
just playing
7b7194b
raw
history blame
236 Bytes
import gradio as gr
def greet(name):
text = "This is my first App."
text += ("Hello " + name + "!!")
return text
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
# no need for additional commit?