minina / app.py
ruidanwang's picture
测试
517a073
raw
history blame
153 Bytes
import gradio as gr
def greet(name):
return "Hello wdq -- " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()