lampongyuen's picture
Update app.py
b93e812
raw
history blame
279 Bytes
# https://www.gradio.app/guides/quickstart
import gradio as gr
def greet(name):
message_to_user="start here"
gr.Info(message_to_user)
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()
gr.Info("starting process")