Temporarily disable some options

This commit is contained in:
lvmin
2023-09-11 02:13:48 -07:00
parent 480e89ca03
commit 9337ad5f5e
3 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -1 +1 @@
version = '1.0.65' version = '1.0.66'
+3 -2
View File
@@ -81,10 +81,11 @@ def worker():
outputs.append(['preview', (5, f'Preparing positive text #{i + 1} ...', None)]) outputs.append(['preview', (5, f'Preparing positive text #{i + 1} ...', None)])
current_seed = seed + i current_seed = seed + i
suffix = pipeline.expansion(prompt, current_seed) p_txt = apply_style_positive(style_selction, prompt)
suffix = pipeline.expansion(p_txt, current_seed)
print(f'[Prompt Expansion] New suffix: {suffix}') print(f'[Prompt Expansion] New suffix: {suffix}')
p_txt = apply_style_positive(style_selction, prompt)
p_txt = safe_str(p_txt) + suffix p_txt = safe_str(p_txt) + suffix
tasks.append(dict( tasks.append(dict(
+3 -3
View File
@@ -5,9 +5,9 @@ from modules.path import fooocus_expansion_path
fooocus_magic_split = [ fooocus_magic_split = [
', extremely', ', extremely',
# ', trending', ', trending',
# ', intricate', ', intricate',
# '. The', '. The',
] ]
dangrous_patterns = '[]【】()()|:' dangrous_patterns = '[]【】()()|:'