reddog-sandbox / app.py
thegovind's picture
add gradio app file
8030857 unverified
import gradio as gr
def greet(name):
return "Reddog space " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()