summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2024-02-19 10:34:10 +0200
committerGeorgi Gerganov <ggerganov@gmail.com>2024-02-19 10:34:10 +0200
commitf53119cec4f073b6d214195ecbe1fad3abdf2b34 (patch)
tree8089f85b77134a142568664d6442a1d571563aea
parent70847553963c85e86051d06df848236829f5f951 (diff)
minor : fix trailing whitespace (#5538)
-rw-r--r--llama.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llama.cpp b/llama.cpp
index 14387064..5de07dfa 100644
--- a/llama.cpp
+++ b/llama.cpp
@@ -12525,7 +12525,7 @@ static std::string trim(const std::string & str) {
// This function uses heuristic checks to determine commonly used template. It is not a jinja parser.
static int32_t llama_chat_apply_template_internal(
const std::string & tmpl,
- const std::vector<const llama_chat_message *> & chat,
+ const std::vector<const llama_chat_message *> & chat,
std::string & dest, bool add_ass) {
// Taken from the research: https://github.com/ggerganov/llama.cpp/issues/5527
std::stringstream ss;