File size: 129 Bytes
aa8b219
 
 
 
 
 
 
1
2
3
4
5
6
7
import gradio as gr

def talk(text):
    return text 

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