File size: 140 Bytes
6c58fd4
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

def echo_text(text):
    return text

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