From 81a26a27ec7dc88d74c1a3d7ac925eb42c89ce1f Mon Sep 17 00:00:00 2001 From: Shaun Cook Date: Wed, 16 Aug 2023 14:34:29 +0100 Subject: [PATCH] Add missing semi-colon to README sample code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2bb6a17f..b4abc5fe 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ LLamaSharp provides two ways to run inference: `LLamaExecutor` and `ChatSession` using LLama.Common; using LLama; -string modelPath = "" // change it to your own model path +string modelPath = ""; // change it to your own model path var prompt = "Transcript of a dialog, where the User interacts with an Assistant named Bob. Bob is helpful, kind, honest, good at writing, and never fails to answer the User's requests immediately and with precision.\r\n\r\nUser: Hello, Bob.\r\nBob: Hello. How may I help you today?\r\nUser: Please tell me the largest city in Europe.\r\nBob: Sure. The largest city in Europe is Moscow, the capital of Russia.\r\nUser:"; // use the "chat-with-bob" prompt here. // Initialize a chat session