minimal / app.py
hiikate's picture
Update app.py
8921f32
raw
history blame contribute delete
273 Bytes
import gradio as gr
def greet(name):
return "You're a wonderful human being, " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text",
title = 'Hello World',
description = "A daily reminder to boost your happiness!")
iface.launch()