testingGround3 / app.py
hwberry2's picture
changed output in the app.py file
9e8bd57
raw
history blame
188 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="true")