05-032-MendicantBias's picture
add example app.py with greetings (#3)
a9ae558 verified
raw
history blame contribute delete
166 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + ", my name is RAMIE!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()