hello-world / app.py
Artmen's picture
Update app.py
6e460a4
raw
history blame contribute delete
367 Bytes
import gradio as gr
title = "Welcome to Gradio!"
description = "This is a demo of a Gradio app."
ref = "Find the whole code [here](https://github.com/artmen1516/gradio-hello-world)."
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text", title=title, description=description, article=ref)
demo.launch()