import gradio as gr def fx(x): return "你好:"+x gr.Interface(fn=fx,inputs="text",outputs="text").launch(auth=("changxin", "123456"))