set save_image_with_stored_embedding as bool and default to True

This commit is contained in:
Dave Lage (rockerBOO) 2023-01-26 04:10:28 -05:00
parent eaa4419f0d
commit 5ca3ecc9ed
No known key found for this signature in database
GPG Key ID: 0D4EAF00DCABC97B

View File

@ -329,9 +329,10 @@ class TrainEmbeddingAPI(BaseModel):
description="Prompt template file",
default="style_filewords.txt",
)
save_image_with_stored_embedding: str = Field(
save_image_with_stored_embedding: bool = Field(
title="Save image with embedding",
description="Save images with embedding in PNG chunks",
default=True
)
preview_from_txt2img: bool = Field(
title="Preview from txt2img",