CongMa / testGradio.py
XuBailing's picture
Upload testGradio.py
7879c3e
raw
history blame
164 Bytes
import gradio as gr
def greet(name):
return "Hello aaaa " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch(share=True)