diff --git a/LLama.Examples/Examples/LLama2ChatSession.cs b/LLama.Examples/Examples/LLama2ChatSession.cs index 7be364345..8d6c2921e 100644 --- a/LLama.Examples/Examples/LLama2ChatSession.cs +++ b/LLama.Examples/Examples/LLama2ChatSession.cs @@ -97,7 +97,7 @@ public IHistoryTransform Clone() public string HistoryToText(ChatHistory history) { //More info on template format for llama2 https://huggingface.co/blog/llama2#how-to-prompt-llama-2 - //We don't have to insert token for the first message, as it's done automaticaly by LLamaSharp.InteractExecutor and LLama.cpp + //We don't have to insert token for the first message, as it's done automatically by LLamaSharp.InteractExecutor and LLama.cpp //See more in https://github.com/ggerganov/llama.cpp/pull/7107 if (history.Messages.Count == 0) return string.Empty;