PushTesting / app.py
DavidD003's picture
"Comment"
8723698
raw
history blame
153 Bytes
import gradio as gr
def greet(name):
return "GREETINGS " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()