mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-09 02:00:44 +08:00
d7c96e1ad8
* add sound alert demo * changelog * update changelog * address suggestions
17 lines
439 B
Python
17 lines
439 B
Python
import time
|
|
import gradio as gr
|
|
|
|
|
|
js_function = "() => {new Audio('file=beep.mp3').play();}"
|
|
|
|
def task(x):
|
|
time.sleep(2)
|
|
return "Hello, " + x
|
|
|
|
with gr.Blocks() as demo:
|
|
name = gr.Textbox(label="name")
|
|
greeting = gr.Textbox(label="greeting")
|
|
name.blur(task, name, greeting)
|
|
greeting.change(None, [], [], _js=js_function) # Note that _js is a special arugment whose usage may change in the future
|
|
|
|
demo.launch() |