FreshBench / gradio_samples /hello_test.py
jijivski
dynamically add choices
e2bf898
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)