File size: 139 Bytes
bab32aa
 
 
 
 
1
2
3
4
5
import gradio as gr
def fx(x):
    return "你好:"+x

gr.Interface(fn=fx,inputs="text",outputs="text").launch(auth=("changxin", "123456"))