hello-world / app.py
yaoqi's picture
Create app.py
c30307d
raw
history blame contribute delete
143 Bytes
import gradio as gr
def greet(name):
return "Hello " + name
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()