tool-test / app.py
rrg92's picture
Create app.py
2387773 verified
raw
history blame contribute delete
140 Bytes
import gradio as gr
def echo(name):
return "This is a test";
demo = gr.Interface(fn=echo, inputs="text", outputs="text")
demo.launch()