import gradio as gr # type: ignore def greet(name, intensity): return "Hello, " + name + "!" * int(intensity) demo = gr.Interface( fn=greet, inputs=["text", "slider"], outputs=["text"], ) demo.launch() # demo.launch(share=True) # with public URL . # Share your demo with just 1 extra parameter ## #gradio deploy# to deploy in HF Spaces