Skip to content

Commit 7dc3e3e

Browse files
authored
store clip skip value on generated images (LostRuins#1551)
1 parent da7fd4a commit 7dc3e3e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

otherarch/sdcpp/sdtype_adapter.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ static std::string get_image_params(const SDParams& params) {
301301
parameter_string += "Seed: " + std::to_string(params.seed) + " | ";
302302
parameter_string += "Size: " + std::to_string(params.width) + "x" + std::to_string(params.height) + " | ";
303303
parameter_string += "Sampler: " + std::to_string((int)sd_params->sample_method) + " | ";
304+
parameter_string += "Clip skip: " + std::to_string((int)sd_params->clip_skip) + " | ";
304305
parameter_string += "Model: " + sdmodelfilename + " | ";
305306
parameter_string += "Version: KoboldCpp";
306307
return parameter_string;

0 commit comments

Comments
 (0)