diff --git a/examples/server/utils.hpp b/examples/server/utils.hpp index b1623c737..548548962 100644 --- a/examples/server/utils.hpp +++ b/examples/server/utils.hpp @@ -174,7 +174,7 @@ inline std::string format_llama2(std::vector messages) for (auto it = messages.begin(); it != messages.end(); ++it) { if (!is_inside_turn) { - output << "[INST] "; + output << "[INST] "; } std::string role = json_value(*it, "role", std::string("user")); std::string content = json_value(*it, "content", std::string(""));