demo / app.py
jy-raychen's picture
init with demo code
cc1fe64 verified
raw
history blame contribute delete
141 Bytes
import gradio as gr
def greet(name):
return "Hello " + name
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()