File size: 121 Bytes
a61f902
7e9f395
 
a61f902
1
2
3
4
5
import gradio as gr
def greet(nm): return f"Hello {nm}!"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()