Remove trailing whitespace.

This commit is contained in:
David Baker 2026-03-20 09:03:13 +00:00
parent 7a08fd0329
commit cddbcfc89a
No known key found for this signature in database
GPG Key ID: 89298D31E5B7B548
2 changed files with 4 additions and 4 deletions

View File

@ -131,7 +131,7 @@ struct cli_context {
}
append_file_out(
"[Prompt]: " + messages.back()["content"].get<std::string>() + "\n\n",
"[Prompt]: " + messages.back()["content"].get<std::string>() + "\n\n",
chat_params.prompt
);
@ -405,13 +405,13 @@ int main(int argc, char ** argv) {
// open output file early to fail fast
if (!params.out_file.empty()) {
ctx_cli.file_out.emplace(params.out_file, std::ios::binary);
if (!ctx_cli.file_out.has_value() || !ctx_cli.file_out->is_open()) {
console::error("Failed to open output file '%s'\n", params.out_file.c_str());
return 1;
}
}
console::set_display(DISPLAY_TYPE_RESET);
console::set_completion_callback(auto_completion_callback);

View File

@ -52,7 +52,7 @@ struct task_params {
bool return_tokens = false;
bool return_progress = false;
bool special_characters = false; // whether to include special tokens in the output (e.g. <s>, </s>, <pad>, etc.)
int32_t n_keep = 0; // number of tokens to keep from initial prompt
int32_t n_discard = 0; // number of tokens after n_keep that may be discarded when shifting context, 0 defaults to half
int32_t n_predict = -1; // new tokens to predict