AIMLjan25g / app.py
sarwansingh's picture
Update app.py
0457594 verified
raw
history blame
190 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()