Skip to content

Commit 1fd0bde

Browse files
authored
Merge pull request #1154 from NicklausBrain/patch-1
adding missing using statement
2 parents eff8002 + 7b8406b commit 1fd0bde

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,9 @@ Generally, we recommend downloading models with quantization rather than fp16, b
120120
Here is a simple example to chat with a bot based on a LLM in LLamaSharp. Please replace the model path with yours.
121121

122122
```cs
123-
using LLama.Common;
124123
using LLama;
124+
using LLama.Common;
125+
using LLama.Sampling;
125126

126127
string modelPath = @"<Your Model Path>"; // change it to your own model path.
127128

0 commit comments

Comments
 (0)