yqcyqc's picture
Upload app.py
81d3d81 verified
raw
history blame
190 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(
fn=greet,
inputs="textbox",
outputs="textbox"
)
demo.launch(share=True)