hello-world / app.py
abidlabs's picture
abidlabs HF Staff
Create app.py
c66d351
raw
history blame
129 Bytes
import gradio as gr
def greet(name):
return "Hello " + name
gr.Interface(fn=greet, inputs="text", outputs="text").launch()