img-filter / app.py
yesdeepakmittal's picture
Greet message changed
558a5b8
raw
history blame contribute delete
163 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + ", Good Morning!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()