venusxcodez/grad
0
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()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()