Testspace / app.py
k96beni's picture
Upload app.py
d2946fd verified
raw
history blame contribute delete
115 Bytes
import gradio as gr
def echo(msg): return msg
gr.Interface(fn=echo, inputs="text", outputs="text").launch()