File size: 26,753 Bytes
add8f0b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 |
"""Contains all of the events that can be triggered in a gr.Blocks() app, with the exception
of the on-page-load event, which is defined in gr.Blocks().load()."""
from __future__ import annotations
import dataclasses
from functools import partial, wraps
from typing import TYPE_CHECKING, Any, Callable, Literal, Sequence
from gradio_client.documentation import document
from jinja2 import Template
if TYPE_CHECKING:
from gradio.blocks import Block, Component
from gradio.context import Context
from gradio.utils import get_cancel_function
def set_cancel_events(
triggers: Sequence[EventListenerMethod],
cancels: None | dict[str, Any] | list[dict[str, Any]],
):
if cancels:
if not isinstance(cancels, list):
cancels = [cancels]
cancel_fn, fn_indices_to_cancel = get_cancel_function(cancels)
if Context.root_block is None:
raise AttributeError("Cannot cancel outside of a gradio.Blocks context.")
Context.root_block.set_event_trigger(
triggers,
cancel_fn,
inputs=None,
outputs=None,
queue=False,
preprocess=False,
show_api=False,
cancels=fn_indices_to_cancel,
)
class Dependency(dict):
def __init__(self, trigger, key_vals, dep_index, fn):
super().__init__(key_vals)
self.fn = fn
self.then = partial(
EventListener(
"then",
trigger_after=dep_index,
trigger_only_on_success=False,
has_trigger=False,
).listener,
trigger,
)
"""
Triggered after directly preceding event is completed, regardless of success or failure.
"""
self.success = partial(
EventListener(
"success",
trigger_after=dep_index,
trigger_only_on_success=True,
has_trigger=False,
).listener,
trigger,
)
"""
Triggered after directly preceding event is completed, if it was successful.
"""
def __call__(self, *args, **kwargs):
return self.fn(*args, **kwargs)
@document()
class EventData:
"""
When a subclass of EventData is added as a type hint to an argument of an event listener method, this object will be passed as that argument.
It contains information about the event that triggered the listener, such the target object, and other data related to the specific event that are attributes of the subclass.
Example:
table = gr.Dataframe([[1, 2, 3], [4, 5, 6]])
gallery = gr.Gallery([("cat.jpg", "Cat"), ("dog.jpg", "Dog")])
textbox = gr.Textbox("Hello World!")
statement = gr.Textbox()
def on_select(evt: gr.SelectData): # SelectData is a subclass of EventData
return f"You selected {evt.value} at {evt.index} from {evt.target}"
table.select(on_select, None, statement)
gallery.select(on_select, None, statement)
textbox.select(on_select, None, statement)
Demos: gallery_selections, tictactoe
"""
def __init__(self, target: Block | None, _data: Any):
"""
Parameters:
target: The target object that triggered the event. Can be used to distinguish if multiple components are bound to the same listener.
"""
self.target = target
self._data = _data
class SelectData(EventData):
def __init__(self, target: Block | None, data: Any):
super().__init__(target, data)
self.index: int | tuple[int, int] = data["index"]
"""
The index of the selected item. Is a tuple if the component is two dimensional or selection is a range.
"""
self.value: Any = data["value"]
"""
The value of the selected item.
"""
self.selected: bool = data.get("selected", True)
"""
True if the item was selected, False if deselected.
"""
class KeyUpData(EventData):
def __init__(self, target: Block | None, data: Any):
super().__init__(target, data)
self.key: str = data["key"]
"""
The key that was pressed.
"""
self.input_value: str = data["input_value"]
"""
The displayed value in the input textbox after the key was pressed. This may be different than the `value`
attribute of the component itself, as the `value` attribute of some components (e.g. Dropdown) are not updated
until the user presses Enter.
"""
@dataclasses.dataclass
class EventListenerMethod:
block: Block | None
event_name: str
class EventListener(str):
def __new__(cls, event_name, *_args, **_kwargs):
return super().__new__(cls, event_name)
def __init__(
self,
event_name: str,
has_trigger: bool = True,
config_data: Callable[..., dict[str, Any]] = lambda: {},
show_progress: Literal["full", "minimal", "hidden"] = "full",
callback: Callable | None = None,
trigger_after: int | None = None,
trigger_only_on_success: bool = False,
doc: str = "",
):
super().__init__()
self.has_trigger = has_trigger
self.config_data = config_data
self.event_name = event_name
self.show_progress = show_progress
self.trigger_after = trigger_after
self.trigger_only_on_success = trigger_only_on_success
self.callback = callback
self.doc = doc
self.listener = self._setup(
event_name,
has_trigger,
show_progress,
callback,
trigger_after,
trigger_only_on_success,
)
if doc and self.listener.__doc__:
self.listener.__doc__ = doc + self.listener.__doc__
def set_doc(self, component: str):
if self.listener.__doc__:
doc = Template(self.listener.__doc__).render(component=component)
self.listener.__doc__ = doc
def copy(self):
return EventListener(
self.event_name,
self.has_trigger,
self.config_data,
self.show_progress, # type: ignore
self.callback,
self.trigger_after,
self.trigger_only_on_success,
self.doc,
)
@staticmethod
def _setup(
_event_name: str,
_has_trigger: bool,
_show_progress: Literal["full", "minimal", "hidden"],
_callback: Callable | None,
_trigger_after: int | None,
_trigger_only_on_success: bool,
):
def event_trigger(
block: Block | None,
fn: Callable | None | Literal["decorator"] = "decorator",
inputs: Component | list[Component] | set[Component] | None = None,
outputs: Component | list[Component] | None = None,
api_name: str | None | Literal[False] = None,
scroll_to_output: bool = False,
show_progress: Literal["full", "minimal", "hidden"] = _show_progress,
queue: bool | None = None,
batch: bool = False,
max_batch_size: int = 4,
preprocess: bool = True,
postprocess: bool = True,
cancels: dict[str, Any] | list[dict[str, Any]] | None = None,
every: float | None = None,
trigger_mode: Literal["once", "multiple", "always_last"] | None = None,
js: str | None = None,
concurrency_limit: int | None | Literal["default"] = "default",
concurrency_id: str | None = None,
show_api: bool = True,
) -> Dependency:
"""
Parameters:
fn: the function to call when this event is triggered. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
outputs: List of gradio.components to use as outputs. If the function returns no outputs, this should be an empty list.
api_name: defines how the endpoint appears in the API docs. Can be a string, None, or False. If set to a string, the endpoint will be exposed in the API docs with the given name. If None (default), the name of the function will be used as the API endpoint. If False, the endpoint will not be exposed in the API docs and downstream apps (including those that `gr.load` this app) will not be able to use this event.
scroll_to_output: If True, will scroll to output component on completion
show_progress: If True, will show progress animation while pending
queue: If True, will place the request on the queue, if the queue has been enabled. If False, will not put this event on the queue, even if the queue has been enabled. If None, will use the queue setting of the gradio app.
batch: If True, then the function should process a batch of inputs, meaning that it should accept a list of input values for each parameter. The lists should be of equal length (and be up to length `max_batch_size`). The function is then *required* to return a tuple of lists (even if there is only 1 output component), with each list in the tuple corresponding to one output component.
max_batch_size: Maximum number of inputs to batch together if this is called from the queue (only relevant if batch=True)
preprocess: If False, will not run preprocessing of component data before running 'fn' (e.g. leaving it as a base64 string if this method is called with the `Image` component).
postprocess: If False, will not run postprocessing of component data before returning 'fn' output to the browser.
cancels: A list of other events to cancel when this listener is triggered. For example, setting cancels=[click_event] will cancel the click_event, where click_event is the return value of another components .click method. Functions that have not yet run (or generators that are iterating) will be cancelled, but functions that are currently running will be allowed to finish.
every: Run this event 'every' number of seconds while the client connection is open. Interpreted in seconds.
trigger_mode: If "once" (default for all events except `.change()`) would not allow any submissions while an event is pending. If set to "multiple", unlimited submissions are allowed while pending, and "always_last" (default for `.change()` and `.key_up()` events) would allow a second submission after the pending event is complete.
js: Optional frontend js method to run before running 'fn'. Input arguments for js method are values of 'inputs' and 'outputs', return should be a list of values for output components.
concurrency_limit: If set, this is the maximum number of this event that can be running simultaneously. Can be set to None to mean no concurrency_limit (any number of this event can be running simultaneously). Set to "default" to use the default concurrency limit (defined by the `default_concurrency_limit` parameter in `Blocks.queue()`, which itself is 1 by default).
concurrency_id: If set, this is the id of the concurrency group. Events with the same concurrency_id will be limited by the lowest set concurrency_limit.
show_api: whether to show this event in the "view API" page of the Gradio app, or in the ".view_api()" method of the Gradio clients. Unlike setting api_name to False, setting show_api to False will still allow downstream apps to use this event. If fn is None, show_api will automatically be set to False.
"""
if fn == "decorator":
def wrapper(func):
event_trigger(
block=block,
fn=func,
inputs=inputs,
outputs=outputs,
api_name=api_name,
scroll_to_output=scroll_to_output,
show_progress=show_progress,
queue=queue,
batch=batch,
max_batch_size=max_batch_size,
preprocess=preprocess,
postprocess=postprocess,
cancels=cancels,
every=every,
trigger_mode=trigger_mode,
js=js,
concurrency_limit=concurrency_limit,
concurrency_id=concurrency_id,
show_api=show_api,
)
@wraps(func)
def inner(*args, **kwargs):
return func(*args, **kwargs)
return inner
return Dependency(None, {}, None, wrapper)
from gradio.components.base import StreamingInput
if isinstance(block, StreamingInput) and "stream" in block.events:
block.check_streamable() # type: ignore
if isinstance(show_progress, bool):
show_progress = "full" if show_progress else "hidden"
if Context.root_block is None:
raise AttributeError(
f"Cannot call {_event_name} outside of a gradio.Blocks context."
)
dep, dep_index = Context.root_block.set_event_trigger(
[EventListenerMethod(block if _has_trigger else None, _event_name)],
fn,
inputs,
outputs,
preprocess=preprocess,
postprocess=postprocess,
scroll_to_output=scroll_to_output,
show_progress=show_progress,
api_name=api_name,
js=js,
concurrency_limit=concurrency_limit,
concurrency_id=concurrency_id,
queue=queue,
batch=batch,
max_batch_size=max_batch_size,
every=every,
trigger_after=_trigger_after,
trigger_only_on_success=_trigger_only_on_success,
trigger_mode=trigger_mode,
show_api=show_api,
)
set_cancel_events(
[EventListenerMethod(block if _has_trigger else None, _event_name)],
cancels,
)
if _callback:
_callback(block)
return Dependency(block, dep, dep_index, fn)
event_trigger.event_name = _event_name
event_trigger.has_trigger = _has_trigger
return event_trigger
def on(
triggers: Sequence[Any] | Any | None = None,
fn: Callable | None | Literal["decorator"] = "decorator",
inputs: Component | list[Component] | set[Component] | None = None,
outputs: Component | list[Component] | None = None,
*,
api_name: str | None | Literal[False] = None,
scroll_to_output: bool = False,
show_progress: Literal["full", "minimal", "hidden"] = "full",
queue: bool | None = None,
batch: bool = False,
max_batch_size: int = 4,
preprocess: bool = True,
postprocess: bool = True,
cancels: dict[str, Any] | list[dict[str, Any]] | None = None,
every: float | None = None,
js: str | None = None,
concurrency_limit: int | None | Literal["default"] = "default",
concurrency_id: str | None = None,
show_api: bool = True,
) -> Dependency:
"""
Parameters:
triggers: List of triggers to listen to, e.g. [btn.click, number.change]. If None, will listen to changes to any inputs.
fn: the function to call when this event is triggered. Often a machine learning model's prediction function. Each parameter of the function corresponds to one input component, and the function should return a single value or a tuple of values, with each element in the tuple corresponding to one output component.
inputs: List of gradio.components to use as inputs. If the function takes no inputs, this should be an empty list.
outputs: List of gradio.components to use as outputs. If the function returns no outputs, this should be an empty list.
api_name: Defines how the endpoint appears in the API docs. Can be a string, None, or False. If False, the endpoint will not be exposed in the api docs. If set to None, the endpoint will be exposed in the api docs as an unnamed endpoint, although this behavior will be changed in Gradio 4.0. If set to a string, the endpoint will be exposed in the api docs with the given name.
scroll_to_output: If True, will scroll to output component on completion
show_progress: If True, will show progress animation while pending
queue: If True, will place the request on the queue, if the queue has been enabled. If False, will not put this event on the queue, even if the queue has been enabled. If None, will use the queue setting of the gradio app.
batch: If True, then the function should process a batch of inputs, meaning that it should accept a list of input values for each parameter. The lists should be of equal length (and be up to length `max_batch_size`). The function is then *required* to return a tuple of lists (even if there is only 1 output component), with each list in the tuple corresponding to one output component.
max_batch_size: Maximum number of inputs to batch together if this is called from the queue (only relevant if batch=True)
preprocess: If False, will not run preprocessing of component data before running 'fn' (e.g. leaving it as a base64 string if this method is called with the `Image` component).
postprocess: If False, will not run postprocessing of component data before returning 'fn' output to the browser.
cancels: A list of other events to cancel when this listener is triggered. For example, setting cancels=[click_event] will cancel the click_event, where click_event is the return value of another components .click method. Functions that have not yet run (or generators that are iterating) will be cancelled, but functions that are currently running will be allowed to finish.
every: Run this event 'every' number of seconds while the client connection is open. Interpreted in seconds.
js: Optional frontend js method to run before running 'fn'. Input arguments for js method are values of 'inputs', return should be a list of values for output components.
concurrency_limit: If set, this is the maximum number of this event that can be running simultaneously. Can be set to None to mean no concurrency_limit (any number of this event can be running simultaneously). Set to "default" to use the default concurrency limit (defined by the `default_concurrency_limit` parameter in `Blocks.queue()`, which itself is 1 by default).
concurrency_id: If set, this is the id of the concurrency group. Events with the same concurrency_id will be limited by the lowest set concurrency_limit.
show_api: whether to show this event in the "view API" page of the Gradio app, or in the ".view_api()" method of the Gradio clients. Unlike setting api_name to False, setting show_api to False will still allow downstream apps to use this event. If fn is None, show_api will automatically be set to False.
"""
from gradio.components.base import Component
if isinstance(triggers, EventListener):
triggers = [triggers]
if isinstance(inputs, Component):
inputs = [inputs]
if fn == "decorator":
def wrapper(func):
on(
triggers,
fn=func,
inputs=inputs,
outputs=outputs,
api_name=api_name,
scroll_to_output=scroll_to_output,
show_progress=show_progress,
queue=queue,
batch=batch,
max_batch_size=max_batch_size,
preprocess=preprocess,
postprocess=postprocess,
cancels=cancels,
every=every,
js=js,
concurrency_limit=concurrency_limit,
concurrency_id=concurrency_id,
show_api=show_api,
)
@wraps(func)
def inner(*args, **kwargs):
return func(*args, **kwargs)
return inner
return Dependency(None, {}, None, wrapper)
if Context.root_block is None:
raise Exception("Cannot call on() outside of a gradio.Blocks context.")
if triggers is None:
triggers = (
[EventListenerMethod(input, "change") for input in inputs]
if inputs is not None
else []
) # type: ignore
else:
triggers = [
EventListenerMethod(t.__self__ if t.has_trigger else None, t.event_name)
for t in triggers
] # type: ignore
dep, dep_index = Context.root_block.set_event_trigger(
triggers,
fn,
inputs,
outputs,
preprocess=preprocess,
postprocess=postprocess,
scroll_to_output=scroll_to_output,
show_progress=show_progress,
api_name=api_name,
js=js,
concurrency_limit=concurrency_limit,
concurrency_id=concurrency_id,
queue=queue,
batch=batch,
max_batch_size=max_batch_size,
every=every,
show_api=show_api,
)
set_cancel_events(triggers, cancels)
return Dependency(None, dep, dep_index, fn)
class Events:
change = EventListener(
"change",
doc="Triggered when the value of the {{ component }} changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See `.input()` for a listener that is only triggered by user input.",
)
input = EventListener(
"input",
doc="This listener is triggered when the user changes the value of the {{ component }}.",
)
click = EventListener("click", doc="Triggered when the {{ component }} is clicked.")
submit = EventListener(
"submit",
doc="This listener is triggered when the user presses the Enter key while the {{ component }} is focused.",
)
edit = EventListener(
"edit",
doc="This listener is triggered when the user edits the {{ component }} (e.g. image) using the built-in editor.",
)
clear = EventListener(
"clear",
doc="This listener is triggered when the user clears the {{ component }} using the X button for the component.",
)
play = EventListener(
"play",
doc="This listener is triggered when the user plays the media in the {{ component }}.",
)
pause = EventListener(
"pause",
doc="This listener is triggered when the media in the {{ component }} stops for any reason.",
)
stop = EventListener(
"stop",
doc="This listener is triggered when the user reaches the end of the media playing in the {{ component }}.",
)
end = EventListener(
"end",
doc="This listener is triggered when the user reaches the end of the media playing in the {{ component }}.",
)
start_recording = EventListener(
"start_recording",
doc="This listener is triggered when the user starts recording with the {{ component }}.",
)
pause_recording = EventListener(
"pause_recording",
doc="This listener is triggered when the user pauses recording with the {{ component }}.",
)
stop_recording = EventListener(
"stop_recording",
doc="This listener is triggered when the user stops recording with the {{ component }}.",
)
focus = EventListener(
"focus", doc="This listener is triggered when the {{ component }} is focused."
)
blur = EventListener(
"blur",
doc="This listener is triggered when the {{ component }} is unfocused/blurred.",
)
upload = EventListener(
"upload",
doc="This listener is triggered when the user uploads a file into the {{ component }}.",
)
release = EventListener(
"release",
doc="This listener is triggered when the user releases the mouse on this {{ component }}.",
)
select = EventListener(
"select",
callback=lambda block: setattr(block, "_selectable", True),
doc="Event listener for when the user selects or deselects the {{ component }}. Uses event data gradio.SelectData to carry `value` referring to the label of the {{ component }}, and `selected` to refer to state of the {{ component }}. See EventData documentation on how to use this event data",
)
stream = EventListener(
"stream",
show_progress="hidden",
config_data=lambda: {"streamable": False},
callback=lambda block: setattr(block, "streaming", True),
doc="This listener is triggered when the user streams the {{ component }}.",
)
like = EventListener(
"like",
config_data=lambda: {"likeable": False},
callback=lambda block: setattr(block, "likeable", True),
doc="This listener is triggered when the user likes/dislikes from within the {{ component }}. This event has EventData of type gradio.LikeData that carries information, accessible through LikeData.index and LikeData.value. See EventData documentation on how to use this event data.",
)
load = EventListener(
"load",
doc="This listener is triggered when the {{ component }} initially loads in the browser.",
)
key_up = EventListener(
"key_up",
doc="This listener is triggered when the user presses a key while the {{ component }} is focused.",
)
class LikeData(EventData):
def __init__(self, target: Block | None, data: Any):
super().__init__(target, data)
self.index: int | tuple[int, int] = data["index"]
"""
The index of the liked/disliked item. Is a tuple if the component is two dimensional.
"""
self.value: Any = data["value"]
"""
The value of the liked/disliked item.
"""
self.liked: bool = data.get("liked", True)
"""
True if the item was liked, False if disliked.
"""
|