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