test / app.py
not-lain's picture
Create app.py
aa8b219 verified
raw history blame
No virus
129 Bytes
import gradio as gr
def talk(text):
return text
demo = gr.Interface(fn=talk, inputs="text", outputs="label")
demo.launch()