pq / app.py
changxin's picture
Create app.py
4087097
raw
history blame
139 Bytes
import gradio as gr
def fx(x):
return "你好:"+x
gr.Interface(fn=fx,inputs="text",outputs="text").launch(auth=("changxin", "123456"))