grad / app.py
Dhruvvvv123's picture
app.py
63eb33a verified
raw
history blame contribute delete
225 Bytes
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()