gradio-showcase / app.py
sidashu's picture
Upload folder using huggingface_hub
6e2d842
raw
history blame
183 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text",theme=gr.themes.Monochrome())
demo.launch()