Update README.md
Browse files
README.md
CHANGED
@@ -37,26 +37,21 @@ It is the result of quantising to 4bit using [GPTQ-for-LLaMa](https://github.com
|
|
37 |
|
38 |
## Prompt template
|
39 |
|
40 |
-
|
41 |
|
42 |
```
|
43 |
<|user|>
|
44 |
prompt goes here
|
45 |
<|assistant|>
|
46 |
-
```
|
47 |
-
|
48 |
-
However in my own testing, this seems to return no response at all. But I do get good responses using:
|
49 |
|
50 |
```
|
51 |
-
### Instruction: prompt goes here
|
52 |
-
### Response:
|
53 |
-
```
|
54 |
|
55 |
-
|
|
|
|
|
56 |
|
57 |
```
|
58 |
-
|
59 |
-
ASSISTANT:
|
60 |
```
|
61 |
|
62 |
## How to easily download and use this model in text-generation-webui
|
|
|
37 |
|
38 |
## Prompt template
|
39 |
|
40 |
+
The following template should be used:
|
41 |
|
42 |
```
|
43 |
<|user|>
|
44 |
prompt goes here
|
45 |
<|assistant|>
|
|
|
|
|
|
|
46 |
|
47 |
```
|
|
|
|
|
|
|
48 |
|
49 |
+
**Note**: There should be a newline after `<|assistant|>`. This appears to be very important for getting this model to respond correctly.
|
50 |
+
|
51 |
+
In other words, the prompt is:
|
52 |
|
53 |
```
|
54 |
+
<|user|>\nprompt goes here\n<|assistant|>\n
|
|
|
55 |
```
|
56 |
|
57 |
## How to easily download and use this model in text-generation-webui
|