feat: add files field for embeddings with different filenames

- Add files field to badx-sdxl, pony-pdxl-hq-v3, pony-pdxl-xxx
- Specifies actual downloaded filenames (BadX-neg.pt, zPDXL3.safetensors, zPDXLxxx.pt)
- Allows script to properly link embeddings where YAML name != filename
This commit is contained in:
2025-11-23 19:54:41 +01:00
parent 5770563d9a
commit f6de19bec1

View File

@@ -226,6 +226,9 @@ model_categories:
tags: [negative, quality, anatomy, sdxl]
trigger_word: "BadX"
usage: "embedding:BadX"
files:
- source: "BadX-neg.pt"
dest: "BadX-neg.pt"
notes: "Use in negative prompt with LUSTIFY, RealVisXL, or other SDXL checkpoints. Fixes facial/hand artifacts."
# ==========================================================================
@@ -244,6 +247,9 @@ model_categories:
tags: [negative, quality, pony, nsfw]
trigger_word: "zPDXL3"
usage: "embedding:zPDXL3"
files:
- source: "zPDXL3.safetensors"
dest: "zPDXL3.safetensors"
recommended_settings:
strength: "1.0-2.0"
notes: "ONLY works with Pony Diffusion models. Removes censoring and improves quality."
@@ -260,6 +266,9 @@ model_categories:
tags: [negative, nsfw, pony]
trigger_word: "zPDXLxxx"
usage: "embedding:zPDXLxxx"
files:
- source: "zPDXLxxx.pt"
dest: "zPDXLxxx.pt"
recommended_settings:
strength: "1.0-2.0"
notes: "ONLY for Pony Diffusion models. Enables explicit NSFW content generation."