grad-tutorial / app.py
dntrplytch's picture
Upload folder using huggingface_hub
7d134e4 verified
raw
history blame
199 Bytes
import gradio as gr
def greet(name, intensity):
return "Hello " + name + "!" * intensity
demo = gr.Interface(fn=greet, inputs=["text", "slider"], outputs="text")
demo.launch(share=True)