testDemo / app.py
MarcusAGray's picture
Adjusted launch function parameters
035ea3b
raw
history blame
148 Bytes
import gradio as gr
def greet(name):
return "Wazup " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()