File size: 166 Bytes
35956a9
 
 
 
 
e6cc541
 
1
2
3
4
5
6
7
import gradio as gr

def greet(name):
    return "你是真傻逼 " + name + "!"

demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch(share=True)