Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| def text(masg): | |
| return f"Echo : {masg}" | |
| demo = gr.Interface(fn=text, | |
| inputs="text", | |
| outputs="text", | |
| title = "echo bot") | |
| demo.launch() |
| import gradio as gr | |
| def text(masg): | |
| return f"Echo : {masg}" | |
| demo = gr.Interface(fn=text, | |
| inputs="text", | |
| outputs="text", | |
| title = "echo bot") | |
| demo.launch() |