test1 / app.py
michaelhoward2051's picture
Update app.py
41b76fb verified
raw
history blame contribute delete
217 Bytes
import gradio as gr
def greet(name,intensity):
return ("Hello " + name + "!\n") * int(intensity)
demo = gr.Interface(
fn=greet,
inputs=["text","slider"],
outputs="text",
)
demo.launch(share=True)