1ae8d9a
1
2
3
4
5
6
7
8
9
import gradio as gr def greet(name): return "Hello " + name + "!" gr.Interface(greet, "text", "text").launch(share=True)