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

def echo(name):
    return "This is a test";

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