From b5eda7a2df3a8622ae7a94b6647c352e0cde7ccd Mon Sep 17 00:00:00 2001 From: weiajr <133376323+weiajr@users.noreply.github.com> Date: Sat, 13 May 2023 21:01:13 +0000 Subject: [PATCH] Add a missing } Add a missing } in the readme session example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 38a6ae3d..899174a7 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Besides, `ChatSession` makes it easier to wrap your own chat bot. The code below var model = new LLamaModel(new LLamaParams(model: "", n_ctx: 512, repeat_penalty: 1.0f)); var session = new ChatSession(model).WithPromptFile("") - .WithAntiprompt(new string[] { "User:" ); + .WithAntiprompt(new string[] { "User:" }); Console.Write("\nUser:"); while (true) {