photoclass / app.py
jsauza1
Add description
ca5416c
"""
Gradio Interface for the Greet Function
"""
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()