multiple fixes

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-01-30 09:41:11 -05:00
parent 04ad0caa0c
commit d50d467a33
8 changed files with 46 additions and 11 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ def set_pipeline_args(p, model, prompts:list, negative_prompts:list, prompts_2:t
parser = 'fixed'
prompt_attention = prompt_attention or shared.opts.prompt_attention
if prompt_attention != 'fixed' and 'Onnx' not in model.__class__.__name__ and (
if (prompt_attention != 'fixed') and ('Onnx' not in model.__class__.__name__) and ('prompt' not in p.task_args) and (
'StableDiffusion' in model.__class__.__name__ or
'StableCascade' in model.__class__.__name__ or
'Flux' in model.__class__.__name__