test_hell0 / app.py
ChanYeon's picture
Upload app.py
e813c7b
raw
history blame
169 Bytes
import gradio as gr
def greet(name):
return "Hello " + name
gr.Interface(fn=greet, inputs="text", outputs="text", css=".footer{display:none !important}").launch()