sea / app.py
sea45's picture
Update app.py
0193d56 verified
raw
history blame
157 Bytes
import gradio as gr
def greet(name):
return "嗨 " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch(share=True)