brettapps / app.py
Brettapps's picture
Upload app.py with huggingface_hub
f371b7c verified
raw
history blame contribute delete
180 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
if __name__ == "__main__":
demo.launch()