contents / app.py
bunmei21c's picture
Update app.py
2d3c702 verified
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(
fn=greet,
inputs="text",
outputs="text"
)
demo.launch()