Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
eec1b39b
Commit
eec1b39b
authored
Oct 04, 2022
by
Milly
Committed by
AUTOMATIC1111
Oct 04, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply prompt pattern last
parent
ea6b0d98
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
19 deletions
+20
-19
modules/images.py
modules/images.py
+20
-19
No files found.
modules/images.py
View file @
eec1b39b
...
...
@@ -287,6 +287,25 @@ def apply_filename_pattern(x, p, seed, prompt):
if
seed
is
not
None
:
x
=
x
.
replace
(
"[seed]"
,
str
(
seed
))
if
p
is
not
None
:
x
=
x
.
replace
(
"[steps]"
,
str
(
p
.
steps
))
x
=
x
.
replace
(
"[cfg]"
,
str
(
p
.
cfg_scale
))
x
=
x
.
replace
(
"[width]"
,
str
(
p
.
width
))
x
=
x
.
replace
(
"[height]"
,
str
(
p
.
height
))
#currently disabled if using the save button, will work otherwise
# if enabled it will cause a bug because styles is not included in the save_files data dictionary
if
hasattr
(
p
,
"styles"
):
x
=
x
.
replace
(
"[styles]"
,
sanitize_filename_part
(
", "
.
join
([
x
for
x
in
p
.
styles
if
not
x
==
"None"
]
or
"None"
),
replace_spaces
=
False
))
x
=
x
.
replace
(
"[sampler]"
,
sanitize_filename_part
(
sd_samplers
.
samplers
[
p
.
sampler_index
]
.
name
,
replace_spaces
=
False
))
x
=
x
.
replace
(
"[model_hash]"
,
shared
.
sd_model
.
sd_model_hash
)
x
=
x
.
replace
(
"[date]"
,
datetime
.
date
.
today
()
.
isoformat
())
x
=
x
.
replace
(
"[datetime]"
,
datetime
.
datetime
.
now
()
.
strftime
(
"
%
Y
%
m
%
d
%
H
%
M
%
S"
))
x
=
x
.
replace
(
"[job_timestamp]"
,
shared
.
state
.
job_timestamp
)
# Apply [prompt] at last. Because it may contain any replacement word.^M
if
prompt
is
not
None
:
x
=
x
.
replace
(
"[prompt]"
,
sanitize_filename_part
(
prompt
))
if
"[prompt_no_styles]"
in
x
:
...
...
@@ -295,7 +314,7 @@ def apply_filename_pattern(x, p, seed, prompt):
if
len
(
style
)
>
0
:
style_parts
=
[
y
for
y
in
style
.
split
(
"{prompt}"
)]
for
part
in
style_parts
:
prompt_no_style
=
prompt_no_style
.
replace
(
part
,
""
)
.
replace
(
", ,"
,
","
)
.
strip
()
.
strip
(
','
)
prompt_no_style
=
prompt_no_style
.
replace
(
part
,
""
)
.
replace
(
", ,"
,
","
)
.
strip
()
.
strip
(
','
)
prompt_no_style
=
prompt_no_style
.
replace
(
style
,
""
)
.
strip
()
.
strip
(
','
)
.
strip
()
x
=
x
.
replace
(
"[prompt_no_styles]"
,
sanitize_filename_part
(
prompt_no_style
,
replace_spaces
=
False
))
...
...
@@ -306,24 +325,6 @@ def apply_filename_pattern(x, p, seed, prompt):
words
=
[
"empty"
]
x
=
x
.
replace
(
"[prompt_words]"
,
sanitize_filename_part
(
" "
.
join
(
words
[
0
:
max_prompt_words
]),
replace_spaces
=
False
))
if
p
is
not
None
:
x
=
x
.
replace
(
"[steps]"
,
str
(
p
.
steps
))
x
=
x
.
replace
(
"[cfg]"
,
str
(
p
.
cfg_scale
))
x
=
x
.
replace
(
"[width]"
,
str
(
p
.
width
))
x
=
x
.
replace
(
"[height]"
,
str
(
p
.
height
))
#currently disabled if using the save button, will work otherwise
# if enabled it will cause a bug because styles is not included in the save_files data dictionary
if
hasattr
(
p
,
"styles"
):
x
=
x
.
replace
(
"[styles]"
,
sanitize_filename_part
(
", "
.
join
([
x
for
x
in
p
.
styles
if
not
x
==
"None"
]
or
"None"
),
replace_spaces
=
False
))
x
=
x
.
replace
(
"[sampler]"
,
sanitize_filename_part
(
sd_samplers
.
samplers
[
p
.
sampler_index
]
.
name
,
replace_spaces
=
False
))
x
=
x
.
replace
(
"[model_hash]"
,
shared
.
sd_model
.
sd_model_hash
)
x
=
x
.
replace
(
"[date]"
,
datetime
.
date
.
today
()
.
isoformat
())
x
=
x
.
replace
(
"[datetime]"
,
datetime
.
datetime
.
now
()
.
strftime
(
"
%
Y
%
m
%
d
%
H
%
M
%
S"
))
x
=
x
.
replace
(
"[job_timestamp]"
,
shared
.
state
.
job_timestamp
)
if
cmd_opts
.
hide_ui_dir_config
:
x
=
re
.
sub
(
r'^[\\/]+|\.{2,}[\\/]+|[\\/]+\.{2,}'
,
''
,
x
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment