lampongyuen's picture
Update app.py
789f44d
raw
history blame
324 Bytes
# 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(message_to_user)
gr.Warning("warning")
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()