File size: 316 Bytes
5e1514b
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr

def greet(name, intensity):
    return "Hello, " + name + ",,!" * int(intensity)
    # return "Hello, " + name + ",,!" * int(0/int(intensity))# you can see the bug in command line

demo = gr.Interface(
    fn=greet,
    inputs=["text", "slider"],
    outputs=["text"],
)

demo.launch(debug=True)