File size: 273 Bytes
bb86590 0b6fc60 bb86590 960893b 0b6fc60 8921f32 bb86590 |
1 2 3 4 5 6 7 8 9 |
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() |