testingGround3 / app.py
hwberry2's picture
removed share attribute from launch function
9926f30
raw
history blame contribute delete
No virus
221 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()
#set share="true" to get a local view of app