Skip to content

Commit 11cd888

Browse files
committed
Don't put "Prompt: " in front of prompt when writing metadata
1 parent 0977a72 commit 11cd888

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ai_diffusion/text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def create_img_metadata(params: JobParams):
260260

261261
# Construct output
262262
lines = []
263-
lines.append(f"Prompt: {full_prompt}")
263+
lines.append(full_prompt)
264264
lines.append(f"Negative prompt: {neg_prompt}")
265265
lines.append(
266266
f"Steps: {steps}, Sampler: {sampler}, CFG scale: {cfg_scale}, Seed: {seed}, Size: {width}x{height}, Model hash: unknown, Model: {model}"

0 commit comments

Comments
 (0)