diff --git a/invokeai/app/services/config/config_default.py b/invokeai/app/services/config/config_default.py index 6f844858ae..650f02a088 100644 --- a/invokeai/app/services/config/config_default.py +++ b/invokeai/app/services/config/config_default.py @@ -91,6 +91,7 @@ class InvokeAIAppConfig(BaseSettings): db_dir: Path to InvokeAI databases directory. outputs_dir: Path to directory for outputs. custom_nodes_dir: Path to directory for custom nodes. + style_preset_images_dir: Path to directory for style preset images. log_handlers: Log handler. Valid options are "console", "file=", "syslog=path|address:host:port", "http=". log_format: Log format. Use "plain" for text-only, "color" for colorized output, "legacy" for 2.3-style logging and "syslog" for syslog-style.
Valid values: `plain`, `color`, `syslog`, `legacy` log_level: Emit logging messages at this level or higher.
Valid values: `debug`, `info`, `warning`, `error`, `critical` diff --git a/tests/test_docs.py b/tests/test_docs.py index 33240d526a..e577c6bbfb 100644 --- a/tests/test_docs.py +++ b/tests/test_docs.py @@ -3,7 +3,7 @@ from scripts.update_config_docstring import generate_config_docstrings def test_app_config_docstrings_are_current(): - # If this test fails, run `python scripts/generate_config_docstring.py`. See the comments in that script for + # If this test fails, run `python scripts/update_config_docstring.py`. See the comments in that script for # an explanation of why this is necessary. # # A make target is provided to run the script: `make update-config-docstring`.