test / app.py
ssdfsdfa's picture
Update app.py
3b1978e
raw
history blame contribute delete
157 Bytes
import gradio as gr
def greet(name):
return "abc " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch(share=True)