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) {