CoolFace
Apppublic

venusxcodez/grad

sourceHugging Faceunknownupdated 2y agoView on Hugging Face
0likes
app.py13 linesDownload Raw Back to root
1import gradio as gr2 3def text(msg):4    return f"Echo: {msg}"5 6demo = gr.Interface(7    fn = text,8    inputs = 'text',9    outputs= 'text',10    title = 'Echo Bot'11)12 13demo.launch()