| 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() |