wenkun_test / app.py
zhongmencken
Add application file
232fdfd
raw
history blame contribute delete
159 Bytes
import gradio as gr
def greet(name):
return "你好,墨奇 " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()