4536b0d 3bb4417
1
2
3
4
5
6
import gradio as gr def greet(n): return f"Hello {n}!" gr.Interface(fn=greet, inputs="text", outputs="text").launch()