You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: invokeai/app/services/config/config_default.py
+12-20Lines changed: 12 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
4
4
from __future__ importannotations
5
5
6
+
importcopy
6
7
importlocale
7
8
importos
8
9
importre
@@ -84,7 +85,7 @@ class InvokeAIAppConfig(BaseSettings):
84
85
log_tokenization: Enable logging of parsed prompt tokens.
85
86
patchmatch: Enable patchmatch inpaint code.
86
87
models_dir: Path to the models directory.
87
-
convert_cache_dir: Path to the converted models cache directory (DEPRECATED).
88
+
convert_cache_dir: Path to the converted models cache directory (DEPRECATED, but do not delete because it is needed for migration from previous versions).
88
89
download_cache_dir: Path to the directory that contains dynamically downloaded models.
89
90
legacy_conf_dir: Path to directory of legacy checkpoint config files.
90
91
db_dir: Path to InvokeAI databases directory.
@@ -145,7 +146,7 @@ class InvokeAIAppConfig(BaseSettings):
145
146
146
147
# PATHS
147
148
models_dir: Path=Field(default=Path("models"), description="Path to the models directory.")
148
-
convert_cache_dir: Path=Field(default=Path("models/.convert_cache"), description="Path to the converted models cache directory (DEPRECATED).")
149
+
convert_cache_dir: Path=Field(default=Path("models/.convert_cache"), description="Path to the converted models cache directory (DEPRECATED, but do not delete because it is needed for migration from previous versions).")
149
150
download_cache_dir: Path=Field(default=Path("models/.download_cache"), description="Path to the directory that contains dynamically downloaded models.")
150
151
legacy_conf_dir: Path=Field(default=Path("configs"), description="Path to directory of legacy checkpoint config files.")
151
152
db_dir: Path=Field(default=Path("databases"), description="Path to InvokeAI databases directory.")
0 commit comments