testingGround3 / app.py
hwberry2's picture
set share to false
ec2de2a
raw
history blame
234 Bytes
import gradio as gr
def greet(name):
return "Hello there " + name + "! You Look Marvelous!!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch(share="false")
#set share="true" to get a local view of app