Blocks and Event Listeners
We briefly descirbed the Blocks class in the Quickstart as a way to build custom demos. Let's dive deeper.
Blocks Structure
Take a look at the demo below.
$code_hello_blocks $demo_hello_blocks
- First, note the
with gr.Blocks() as demo:
clause. The Blocks app code will be contained within this clause. - Next come the Components. These are the same Components used in
Interface
. However, instead of being passed to some constructor, Components are automatically added to the Blocks as they are created within thewith
clause. - Finally, the
click()
event listener. Event listeners define the data flow within the app. In the example above, the listener ties the two Textboxes together. The Textboxname
acts as the input and Textboxoutput
acts as the output to thegreet
method. This dataflow is triggered when the Buttongreet_btn
is clicked. Like an Interface, an event listener can take multiple inputs or outputs.
You can also attach event listeners using decorators - skip the fn
argument and assign inputs
and outputs
directly:
$code_hello_blocks_decorator
Event Listeners and Interactivity
In the example above, you'll notice that you are able to edit Textbox name
, but not Textbox output
. This is because any Component that acts as an input to an event listener is made interactive. However, since Textbox output
acts only as an output, Gradio determines that it should not be made interactive. You can override the default behavior and directly configure the interactivity of a Component with the boolean interactive
keyword argument.
output = gr.Textbox(label="Output", interactive=True)
Note: What happens if a Gradio component is neither an input nor an output? If a component is constructed with a default value, then it is presumed to be displaying content and is rendered non-interactive. Otherwise, it is rendered interactive. Again, this behavior can be overridden by specifying a value for the interactive
argument.
Types of Event Listeners
Take a look at the demo below:
$code_blocks_hello $demo_blocks_hello
Instead of being triggered by a click, the welcome
function is triggered by typing in the Textbox inp
. This is due to the change()
event listener. Different Components support different event listeners. For example, the Video
Component supports a play()
event listener, triggered when a user presses play. See the Docs for the event listeners for each Component.
Multiple Data Flows
A Blocks app is not limited to a single data flow the way Interfaces are. Take a look at the demo below:
$code_reversible_flow $demo_reversible_flow
Note that num1
can act as input to num2
, and also vice-versa! As your apps get more complex, you will have many data flows connecting various Components.
Here's an example of a "multi-step" demo, where the output of one model (a speech-to-text model) gets fed into the next model (a sentiment classifier).
$code_blocks_speech_text_sentiment $demo_blocks_speech_text_sentiment
Function Input List vs Dict
The event listeners you've seen so far have a single input component. If you'd like to have multiple input components pass data to the function, you have two options on how the function can accept input component values:
- as a list of arguments, or
- as a single dictionary of values, keyed by the component
Let's see an example of each: $code_calculator_list_and_dict
Both add()
and sub()
take a
and b
as inputs. However, the syntax is different between these listeners.
- To the
add_btn
listener, we pass the inputs as a list. The functionadd()
takes each of these inputs as arguments. The value ofa
maps to the argumentnum1
, and the value ofb
maps to the argumentnum2
. - To the
sub_btn
listener, we pass the inputs as a set (note the curly brackets!). The functionsub()
takes a single dictionary argumentdata
, where the keys are the input components, and the values are the values of those components.
It is a matter of preference which syntax you prefer! For functions with many input components, option 2 may be easier to manage.
$demo_calculator_list_and_dict
Function Return List vs Dict
Similarly, you may return values for multiple output components either as:
- a list of values, or
- a dictionary keyed by the component
Let's first see an example of (1), where we set the values of two output components by returning two values:
with gr.Blocks() as demo:
food_box = gr.Number(value=10, label="Food Count")
status_box = gr.Textbox()
def eat(food):
if food > 0:
return food - 1, "full"
else:
return 0, "hungry"
gr.Button("EAT").click(
fn=eat,
inputs=food_box,
outputs=[food_box, status_box]
)
Above, each return statement returns two values corresponding to food_box
and status_box
, respectively.
Instead of returning a list of values corresponding to each output component in order, you can also return a dictionary, with the key corresponding to the output component and the value as the new value. This also allows you to skip updating some output components.
with gr.Blocks() as demo:
food_box = gr.Number(value=10, label="Food Count")
status_box = gr.Textbox()
def eat(food):
if food > 0:
return {food_box: food - 1, status_box: "full"}
else:
return {status_box: "hungry"}
gr.Button("EAT").click(
fn=eat,
inputs=food_box,
outputs=[food_box, status_box]
)
Notice how when there is no food, we only update the status_box
element. We skipped updating the food_box
component.
Dictionary returns are helpful when an event listener affects many components on return, or conditionally affects outputs and not others.
Keep in mind that with dictionary returns, we still need to specify the possible outputs in the event listener.
Updating Component Configurations
The return value of an event listener function is usually the updated value of the corresponding output Component. Sometimes we want to update the configuration of the Component as well, such as the visibility. In this case, we return a new Component, setting the properties we want to change.
$code_blocks_essay_simple $demo_blocks_essay_simple
See how we can configure the Textbox itself through a new gr.Textbox()
method. The value=
argument can still be used to update the value along with Component configuration. Any arguments we do not set will use their previous values.
Examples
Just like with gr.Interface
, you can also add examples for your functions when you are working with gr.Blocks
. In this case, instantiate a gr.Examples
similar to how you would instantiate any other component. The constructor of gr.Examples
takes two required arguments:
examples
: a nested list of examples, in which the outer list consists of examples and each inner list consists of an input corresponding to each input componentinputs
: the component or list of components that should be populated when the examples are clicked
You can also set cache_examples=True
similar to gr.Interface
, in which case two additional arguments must be provided:
outputs
: the component or list of components corresponding to the output of the examplesfn
: the function to run to generate the outputs corresponding to the examples
Here's an example showing how to use gr.Examples
in a gr.Blocks
app:
$code_calculator_blocks
Note: In Gradio 4.0 or later, when you click on examples, not only does the value of the input component update to the example value, but the component's configuration also reverts to the properties with which you constructed the component. This ensures that the examples are compatible with the component even if its configuration has been changed.
Running Events Consecutively
You can also run events consecutively by using the then
method of an event listener. This will run an event after the previous event has finished running. This is useful for running events that update components in multiple steps.
For example, in the chatbot example below, we first update the chatbot with the user message immediately, and then update the chatbot with the computer response after a simulated delay.
$code_chatbot_consecutive $demo_chatbot_consecutive
The .then()
method of an event listener executes the subsequent event regardless of whether the previous event raised any errors. If you'd like to only run subsequent events if the previous event executed successfully, use the .success()
method, which takes the same arguments as .then()
.
Running Events Continuously
You can run events on a fixed schedule using gr.Timer()
object. This will run the event when the timer's tick
event fires. See the code below:
with gr.Blocks as demo:
timer = gr.Timer(5)
textbox = gr.Textbox()
textbox2 = gr.Textbox()
timer.tick(set_textbox_fn, textbox, textbox2)
This can also be used directly with a Component's every=
parameter as such:
with gr.Blocks as demo:
timer = gr.Timer(5)
textbox = gr.Textbox()
textbox2 = gr.Textbox(set_textbox_fn, inputs=[textbox], every=timer)
Here is an example of a demo that print the current timestamp, and also prints random numbers regularly!
$code_timer $demo_timer
Gathering Event Data
You can gather specific data about an event by adding the associated event data class as a type hint to an argument in the event listener function.
For example, event data for .select()
can be type hinted by a gradio.SelectData
argument. This event is triggered when a user selects some part of the triggering component, and the event data includes information about what the user specifically selected. If a user selected a specific word in a Textbox
, a specific image in a Gallery
, or a specific cell in a DataFrame
, the event data argument would contain information about the specific selection.
In the 2 player tic-tac-toe demo below, a user can select a cell in the DataFrame
to make a move. The event data argument contains information about the specific cell that was selected. We can first check to see if the cell is empty, and then update the cell with the user's move.
$code_tictactoe $demo_tictactoe
Binding Multiple Triggers to a Function
Often times, you may want to bind multiple triggers to the same function. For example, you may want to allow a user to click a submit button, or press enter to submit a form. You can do this using the gr.on
method and passing a list of triggers to the trigger
.
$code_on_listener_basic $demo_on_listener_basic
You can use decorator syntax as well:
$code_on_listener_decorator
You can use gr.on
to create "live" events by binding to the change
event of components that implement it. If you do not specify any triggers, the function will automatically bind to all change
event of all input components that include a change
event (for example gr.Textbox
has a change
event whereas gr.Button
does not).
$code_on_listener_live $demo_on_listener_live
You can follow gr.on
with .then
, just like any regular event listener. This handy method should save you from having to write a lot of repetitive code!
Binding a Component Value Directly to a Function of Other Components
If you want to set a Component's value to always be a function of the value of other Components, you can use the following shorthand:
with gr.Blocks() as demo:
num1 = gr.Number()
num2 = gr.Number()
product = gr.Number(lambda a, b: a * b, inputs=[num1, num2])
This functionally the same as:
with gr.Blocks() as demo:
num1 = gr.Number()
num2 = gr.Number()
product = gr.Number()
gr.on(
[num1.change, num2.change, demo.load],
lambda a, b: a * b,
inputs=[num1, num2],
outputs=product
)