mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-09-21 11:11:26 -03:00
f88fe2665c
The example now only carries use_portable_settings, civitai_api_key and the four core folder_paths keys (loras/checkpoints/unet/embeddings). Optional keys such as the other-model folders, default_*_root and auto_organize_exclusions are removed; their defaults live in DEFAULT_SETTINGS and reach the user's settings.json on demand. AGENTS.md now forbids adding optional/default keys to the example unless the user explicitly asks for it.
23 lines
565 B
JSON
23 lines
565 B
JSON
{
|
|
"use_portable_settings": false,
|
|
"civitai_api_key": "your_civitai_api_key_here",
|
|
"folder_paths": {
|
|
"loras": [
|
|
"C:/path/to/your/loras_folder",
|
|
"C:/path/to/another/loras_folder"
|
|
],
|
|
"checkpoints": [
|
|
"C:/path/to/your/checkpoints_folder",
|
|
"C:/path/to/another/checkpoints_folder"
|
|
],
|
|
"unet": [
|
|
"C:/path/to/your/diffusion_models_folder",
|
|
"C:/path/to/another/diffusion_models_folder"
|
|
],
|
|
"embeddings": [
|
|
"C:/path/to/your/embeddings_folder",
|
|
"C:/path/to/another/embeddings_folder"
|
|
]
|
|
}
|
|
}
|