File size: 343 Bytes
307e785
789f44d
307e785
 
b93e812
f6ac25e
 
 
307e785
 
 
 
5f74823
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# https://www.gradio.app/guides/quickstart
# https://www.gradio.app/guides/key-features
import gradio as gr
def greet(name):
    message_to_user="start here"
    gr.Info("message1")
    gr.Info("message2")
#    gr.Warning("warning")
    return "Hello " + name + "!"

demo = gr.Interface(fn=greet, inputs="text", outputs="text")

demo.launch()