pq / test.py
changxin's picture
Create test.py
bab32aa
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"))