aboutsummaryrefslogtreecommitdiffstats
path: root/modules/styles.py
diff options
context:
space:
mode:
authorRnDMonkey <ryandrutledge@gmail.com>2022-09-30 03:01:32 +0000
committerAUTOMATIC1111 <16777216c@gmail.com>2022-09-30 10:00:43 +0000
commitff4df06c573c7054f736e0b5a35c24fad2427ab0 (patch)
tree2e5f6d1ca4fb5151a1227ad5c1bc71288c73d7de /modules/styles.py
parentd18daafb8b0b0b7c5f8dc179de7cc0717465297b (diff)
downloadstable-diffusion-webui-gfx803-ff4df06c573c7054f736e0b5a35c24fad2427ab0.tar.gz
stable-diffusion-webui-gfx803-ff4df06c573c7054f736e0b5a35c24fad2427ab0.tar.bz2
stable-diffusion-webui-gfx803-ff4df06c573c7054f736e0b5a35c24fad2427ab0.zip
refined [styles] pattern and added [prompt_no_styles]
Diffstat (limited to 'modules/styles.py')
-rw-r--r--modules/styles.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/styles.py b/modules/styles.py
index eeedcd08..d44dfc1a 100644
--- a/modules/styles.py
+++ b/modules/styles.py
@@ -53,6 +53,12 @@ class StyleDatabase:
negative_prompt = row.get("negative_prompt", "")
self.styles[row["name"]] = PromptStyle(row["name"], prompt, negative_prompt)
+ def get_style_prompts(self, styles):
+ return [self.styles.get(x, self.no_style).prompt for x in styles]
+
+ def get_negative_style_prompts(self, styles):
+ return [self.styles.get(x, self.no_style).negative_prompt for x in styles]
+
def apply_styles_to_prompt(self, prompt, styles):
return apply_styles_to_prompt(prompt, [self.styles.get(x, self.no_style).prompt for x in styles])