First-chances / app.py
Jds20001's picture
Create app.py
6234908 verified
Raw
History Blame Contribute Delete
159 Bytes
import gradio as gr
def hello(text):
return "You said: " + text
demo = gr.Interface(
fn=hello,
inputs="text",
outputs="text"
)
demo.launch()