aboutsummaryrefslogtreecommitdiffstats
path: root/modules/script_callbacks.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-05-08 06:01:25 +0000
committerGitHub <noreply@github.com>2023-05-08 06:01:25 +0000
commit73d956454f0111ffdbebc0285033ca3dd630346b (patch)
tree4396fd0dfed3e0a7a5aac04a159619cec1b2f535 /modules/script_callbacks.py
parent57a3d146e3e193904c1c5e148f7244b9d045f157 (diff)
parentb15bbef798f5aba047f0e6955ce94fe589071b44 (diff)
downloadstable-diffusion-webui-gfx803-73d956454f0111ffdbebc0285033ca3dd630346b.tar.gz
stable-diffusion-webui-gfx803-73d956454f0111ffdbebc0285033ca3dd630346b.tar.bz2
stable-diffusion-webui-gfx803-73d956454f0111ffdbebc0285033ca3dd630346b.zip
Merge branch 'dev' into tooltip
Diffstat (limited to 'modules/script_callbacks.py')
-rw-r--r--modules/script_callbacks.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/script_callbacks.py b/modules/script_callbacks.py
index 07911876..17109732 100644
--- a/modules/script_callbacks.py
+++ b/modules/script_callbacks.py
@@ -93,6 +93,7 @@ callback_map = dict(
callbacks_infotext_pasted=[],
callbacks_script_unloaded=[],
callbacks_before_ui=[],
+ callbacks_on_reload=[],
)
@@ -109,6 +110,14 @@ def app_started_callback(demo: Optional[Blocks], app: FastAPI):
report_exception(c, 'app_started_callback')
+def app_reload_callback():
+ for c in callback_map['callbacks_on_reload']:
+ try:
+ c.callback()
+ except Exception:
+ report_exception(c, 'callbacks_on_reload')
+
+
def model_loaded_callback(sd_model):
for c in callback_map['callbacks_model_loaded']:
try:
@@ -254,6 +263,11 @@ def on_app_started(callback):
add_callback(callback_map['callbacks_app_started'], callback)
+def on_before_reload(callback):
+ """register a function to be called just before the server reloads."""
+ add_callback(callback_map['callbacks_on_reload'], callback)
+
+
def on_model_loaded(callback):
"""register a function to be called when the stable diffusion model is created; the model is
passed as an argument; this function is also called when the script is reloaded. """