kallewoof
commited on
fix: remove excessive newlines in system prompt(s) for alpaca (#936)
Browse files- src/axolotl/prompters.py +2 -2
src/axolotl/prompters.py
CHANGED
|
@@ -33,8 +33,8 @@ class AlpacaPrompter(Prompter):
|
|
| 33 |
Base class for alpaca prompters
|
| 34 |
"""
|
| 35 |
|
| 36 |
-
system_prompt = "Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request
|
| 37 |
-
system_no_input_prompt = "Below is an instruction that describes a task. Write a response that appropriately completes the request
|
| 38 |
system_format: str = "{system}"
|
| 39 |
turn_format: str
|
| 40 |
turn_no_input_format: str
|
|
|
|
| 33 |
Base class for alpaca prompters
|
| 34 |
"""
|
| 35 |
|
| 36 |
+
system_prompt = "Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request."
|
| 37 |
+
system_no_input_prompt = "Below is an instruction that describes a task. Write a response that appropriately completes the request."
|
| 38 |
system_format: str = "{system}"
|
| 39 |
turn_format: str
|
| 40 |
turn_no_input_format: str
|