test_space / app.py
rippertnt's picture
Upload app.py with huggingface_hub
28eef73
raw
history blame
199 Bytes
import gradio as gr
def greet(name, intensity):
return "Hello " * intensity + name + "!"
demo = gr.Interface(
fn=greet,
inputs=["text", "slider"],
outputs=["text"],
)
demo.launch()