mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-02-01 11:13:00 +08:00
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
|
from modules import scripts, shared
|
||
|
import re
|
||
|
|
||
|
|
||
|
def strip_comments(text):
|
||
|
text = re.sub('(^|\n)#[^\n]*(\n|$)', '\n', text) # while line comment
|
||
|
text = re.sub('#[^\n]*(\n|$)', '\n', text) # in the middle of the line comment
|
||
|
|
||
|
return text
|
||
|
|
||
|
|
||
|
class ScriptStripComments(scripts.Script):
|
||
|
def title(self):
|
||
|
return "Comments"
|
||
|
|
||
|
def show(self, is_img2img):
|
||
|
return scripts.AlwaysVisible
|
||
|
|
||
|
def process(self, p, *args):
|
||
|
if not shared.opts.enable_prompt_comments:
|
||
|
return
|
||
|
|
||
|
p.all_prompts = [strip_comments(x) for x in p.all_prompts]
|
||
|
p.all_negative_prompts = [strip_comments(x) for x in p.all_negative_prompts]
|
||
|
|
||
|
p.main_prompt = strip_comments(p.main_prompt)
|
||
|
p.main_negative_prompt = strip_comments(p.main_negative_prompt)
|
||
|
|
||
|
|
||
|
shared.options_templates.update(shared.options_section(('sd', "Stable Diffusion", "sd"), {
|
||
|
"enable_prompt_comments": shared.OptionInfo(True, "Enable comments").info("Use # anywhere in the prompt to hide the text between # and the end of the line from the generation."),
|
||
|
}))
|