hello_worldz / app.py
aliabd's picture
aliabd HF staff
Create new file
9b620b3
raw
history blame
269 Bytes
# URL: https://huggingface.co/spaces/gradio/hello_world
# imports
import gradio as gr
# core function
def greet(name):
return "Hello " + name + "!"
# text to text interface
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
# launch
demo.launch()