File size: 115 Bytes
d2946fd
 
 
 
 
1
2
3
4
5
6
import gradio as gr

def echo(msg): return msg

gr.Interface(fn=echo, inputs="text", outputs="text").launch()