JiunYi's picture
Create app.py
b69f64a verified
raw
history blame contribute delete
168 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
demo.launch(share=True)