From 7dc3e3e64b182b279212b2f7c9e2cd5bd91c8c12 Mon Sep 17 00:00:00 2001 From: Wagner Bruna Date: Wed, 21 May 2025 12:37:48 -0300 Subject: [PATCH] store clip skip value on generated images (#1551) --- otherarch/sdcpp/sdtype_adapter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/otherarch/sdcpp/sdtype_adapter.cpp b/otherarch/sdcpp/sdtype_adapter.cpp index d74c2d27c..e3cc3d555 100644 --- a/otherarch/sdcpp/sdtype_adapter.cpp +++ b/otherarch/sdcpp/sdtype_adapter.cpp @@ -301,6 +301,7 @@ static std::string get_image_params(const SDParams& params) { parameter_string += "Seed: " + std::to_string(params.seed) + " | "; parameter_string += "Size: " + std::to_string(params.width) + "x" + std::to_string(params.height) + " | "; parameter_string += "Sampler: " + std::to_string((int)sd_params->sample_method) + " | "; + parameter_string += "Clip skip: " + std::to_string((int)sd_params->clip_skip) + " | "; parameter_string += "Model: " + sdmodelfilename + " | "; parameter_string += "Version: KoboldCpp"; return parameter_string;