From 5ca3ecc9edfcd4c072913abd7dedaf30b71a6973 Mon Sep 17 00:00:00 2001 From: "Dave Lage (rockerBOO)" Date: Thu, 26 Jan 2023 04:10:28 -0500 Subject: [PATCH] set save_image_with_stored_embedding as bool and default to True --- modules/api/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/api/models.py b/modules/api/models.py index 5e3f8b81..cfd8348f 100644 --- a/modules/api/models.py +++ b/modules/api/models.py @@ -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",