slight clarity fix

This commit is contained in:
Concedo 2023-04-16 22:04:19 +08:00
parent 96fb12cfa2
commit bee6a401fd
2 changed files with 2 additions and 2 deletions

View file

@ -353,7 +353,7 @@ generation_outputs gpttype_generate(const generation_inputs inputs, generation_o
if (concat_output.find(matched) != std::string::npos)
{
remaining_tokens = 0;
printf("\n(Stop sequence triggered: %s)",matched.c_str());
printf("\n(Stop sequence triggered: <%s>)",matched.c_str());
break;
}
}

View file

@ -246,7 +246,7 @@ generation_outputs llama_generate(const generation_inputs inputs, generation_out
if (concat_output.find(matched) != std::string::npos)
{
remaining_tokens = 0;
printf("\n(Stop sequence triggered: %s)",matched.c_str());
printf("\n(Stop sequence triggered: <%s>)",matched.c_str());
break;
}
}