test_wheel / app.py
aliabd's picture
aliabd HF Staff
Update app.py
68167ac
raw
history blame contribute delete
105 Bytes
import gradio as gr
def greet(name):
return "hello" + name
gr.Interface(greet, "text", "text").launch()