Is_he_fat / app.py
keivan's picture
Nice Job!
04897bc
raw
history blame
157 Bytes
import gradio as gr
def greet(name):
return "Good job " + name + "!! :))"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()