gradio_demo / app.py
EvergreenTree's picture
Update app.py
e6cc541
raw
history blame contribute delete
166 Bytes
import gradio as gr
def greet(name):
return "你是真傻逼 " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch(share=True)