TheBloke commited on
Commit
d216189
1 Parent(s): 0f74fb6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -1
README.md CHANGED
@@ -34,6 +34,15 @@ GGML files are for CPU + GPU inference using [llama.cpp](https://github.com/gger
34
  * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference](https://huggingface.co/TheBloke/vicuna-13b-v1.3.0-GGML)
35
  * [Unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/lmsys/vicuna-13b-v1.3)
36
 
 
 
 
 
 
 
 
 
 
37
  <!-- compatibility_ggml start -->
38
  ## Compatibility
39
 
@@ -87,7 +96,7 @@ Refer to the Provided Files table below to see what files use which methods, and
87
  I use the following command line; adjust for your tastes and needs:
88
 
89
  ```
90
- ./main -t 10 -ngl 32 -m vicuna-13b-v1.3.0.ggmlv3.q5_0.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Instruction: Write a story about llamas\n### Response:"
91
  ```
92
  If you're able to use full GPU offloading, you should use `-t 1` to get best performance.
93
 
 
34
  * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference](https://huggingface.co/TheBloke/vicuna-13b-v1.3.0-GGML)
35
  * [Unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/lmsys/vicuna-13b-v1.3)
36
 
37
+ ## Prompt template
38
+
39
+ ```
40
+ A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions.
41
+
42
+ USER: prompt
43
+ ASSISTANT:
44
+ ```
45
+
46
  <!-- compatibility_ggml start -->
47
  ## Compatibility
48
 
 
96
  I use the following command line; adjust for your tastes and needs:
97
 
98
  ```
99
+ ./main -t 10 -ngl 32 -m vicuna-13b-v1.3.0.ggmlv3.q5_0.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "USER: Write a story about llamas\nASSISTANT:"
100
  ```
101
  If you're able to use full GPU offloading, you should use `-t 1` to get best performance.
102