307e785 f98cc6d 307e785 5f74823
1
2
3
4
5
6
7
8
9
10
# https://www.gradio.app/guides/quickstart import gradio as gr def greet(name): gr.Info("start here") return "Hello " + name + "!" demo = gr.Interface(fn=greet, inputs="text", outputs="text") demo.launch() gr.Info("starting process")