From fb75e06293d904e13a930759dc9b1661fe61a15e Mon Sep 17 00:00:00 2001 From: Rinne Date: Mon, 11 Dec 2023 22:27:47 +0800 Subject: [PATCH] fix: output prefix of Chinese example. --- LLama.Examples/Examples/ChatChineseGB2312.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LLama.Examples/Examples/ChatChineseGB2312.cs b/LLama.Examples/Examples/ChatChineseGB2312.cs index bb3d3f80..3a9fe6c7 100644 --- a/LLama.Examples/Examples/ChatChineseGB2312.cs +++ b/LLama.Examples/Examples/ChatChineseGB2312.cs @@ -67,6 +67,8 @@ public class ChatChineseGB2312 Console.WriteLine("The chat session has started."); // show the prompt + Console.ForegroundColor = ConsoleColor.White; + Console.Write("用户:"); Console.ForegroundColor = ConsoleColor.Green; string userInput = Console.ReadLine() ?? "";