File size: 145 Bytes
fbef6d9
 
 
 
 
 
1
2
3
4
5
6
7
import gradio as gr

def echo_function(input_text):
    return input_text

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