vanilla / app.py
tdurbor's picture
Upload folder using huggingface_hub
d090151 verified
raw
history blame
207 Bytes
import gradio as gr
def greet(name, intensity):
return "Hello, " + name + "!" * int(intensity)
demo = gr.Interface(
fn=greet,
inputs=["text", "slider"],
outputs=["text"],
)
demo.launch()