refactor(lora): remove the lora_apply_te setting

Text encoder networks now apply unconditionally in the native path.

- remove the option, the per-request parameter and the control threading
- collapse activate_filtered into plain activate at all call sites
- drop the toggle from the prompt embed cache key
- register the retired key so existing configs load without warnings
This commit is contained in:
CalamitousFelicitousness
2026-07-18 04:16:29 +01:00
parent c42adcf680
commit 55c3eb1325
10 changed files with 8 additions and 24 deletions
-2
View File
@@ -254,7 +254,6 @@ class StableDiffusionProcessing:
prompt_mean_norm: bool | None = None,
diffusers_zeros_prompt_pad: bool | None = None,
te_pooled_embeds: bool | None = None,
lora_apply_te: bool | None = None,
te_complex_human_instruction: str | None = None,
te_use_mask: bool | None = None,
# generation modifier overrides (hijack)
@@ -543,7 +542,6 @@ class StableDiffusionProcessing:
self.prompt_mean_norm = prompt_mean_norm
self.diffusers_zeros_prompt_pad = diffusers_zeros_prompt_pad
self.te_pooled_embeds = te_pooled_embeds
self.lora_apply_te = lora_apply_te
self.te_complex_human_instruction = te_complex_human_instruction
self.te_use_mask = te_use_mask
# generation modifier overrides (hijack)