testDemo / app.py
MarcusAGray's picture
Add application file
090ae7c
raw
history blame
158 Bytes
import gradio as gr
def greet(name):
return "Wazup " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch(share=True)