SecurityDemo / app.py
mkhodary101's picture
Update app.py
6bb826d verified
raw
history blame
171 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch(share=True, ssr=False)