FreshBench / hello_test.py
tREeFrOGorigami's picture
structure
5e1514b
raw
history blame
No virus
316 Bytes
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)