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