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