Thiwanka01's picture
Update app.py
e7a9287 verified
raw
history blame contribute delete
342 Bytes
import gradio as gr
# my_function() = interface
def interface(name, intensity):
return "Hello, " + name + "!" * int(intensity)
# Create Interface Gradio
demo = gr.Interface(
fn = interface,
inputs = ["text", "slider"],
outputs = ["text"],
)
# Launch the interface
demo.launch(share = True) # Share your demo with just 1 extra parameter