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