testsdsdsd / app.py
hiert's picture
Update app.py
b379fbc verified
raw
history blame contribute delete
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()