3d459c0
1
2
3
import gradio as gr def greet(name): return "Hello " + name + "!!" gr.Interface(fn=greet, inputs="text", outputs="text").launch()