rd2l_prediction / app.py
nick-leland's picture
Initial commit
53715b3
raw
history blame
193 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
# Needs a text input for dotabuff link
demo = gr.Interface(fn=greet, inputs="textbox", outputs="text")
demo.launch()