aboutsummaryrefslogtreecommitdiffstats
path: root/modules/cmd_args.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-07-14 07:12:48 +0000
committerAUTOMATIC1111 <16777216c@gmail.com>2023-07-14 07:12:48 +0000
commit92a3236161099aca735c3f59f30859750d9e7452 (patch)
treeffc981e3fdd856dbc389af2e56f0d97d38ecaec1 /modules/cmd_args.py
parent9a3f35b028a8026291679c35e1df5b2aea327a1d (diff)
parent9893d09b4378d14c2a3ef370a5e02b906993ea86 (diff)
downloadstable-diffusion-webui-gfx803-92a3236161099aca735c3f59f30859750d9e7452.tar.gz
stable-diffusion-webui-gfx803-92a3236161099aca735c3f59f30859750d9e7452.tar.bz2
stable-diffusion-webui-gfx803-92a3236161099aca735c3f59f30859750d9e7452.zip
Merge branch 'dev' into sdxl
Diffstat (limited to 'modules/cmd_args.py')
-rw-r--r--modules/cmd_args.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/cmd_args.py b/modules/cmd_args.py
index 278a605e..ae78f469 100644
--- a/modules/cmd_args.py
+++ b/modules/cmd_args.py
@@ -106,4 +106,6 @@ parser.add_argument("--skip-version-check", action='store_true', help="Do not ch
parser.add_argument("--no-hashing", action='store_true', help="disable sha256 hashing of checkpoints to help loading performance", default=False)
parser.add_argument("--no-download-sd-model", action='store_true', help="don't download SD1.5 model even if no model is found in --ckpt-dir", default=False)
parser.add_argument('--subpath', type=str, help='customize the subpath for gradio, use with reverse proxy')
+parser.add_argument('--add-stop-route', action='store_true', help='add /_stop route to stop server')
parser.add_argument('--api-server-stop', action='store_true', help='enable server stop/restart/kill via api')
+parser.add_argument('--timeout-keep-alive', type=int, default=30, help='set timeout_keep_alive for uvicorn')