Update src/axolotl/prompters.py
Browse filesCo-authored-by: NanoCode012 <kevinvong@rocketmail.com>
- src/axolotl/prompters.py +1 -1
src/axolotl/prompters.py
CHANGED
@@ -17,7 +17,7 @@ class AlpacaPrompter:
|
|
17 |
system_no_input_prompt = "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n"
|
18 |
prompt_style = None
|
19 |
|
20 |
-
def __init__(self, prompt_style=
|
21 |
self.prompt_style = prompt_style if prompt_style else PromptStyle.instruct.value
|
22 |
self.match_prompt_style()
|
23 |
|
|
|
17 |
system_no_input_prompt = "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n"
|
18 |
prompt_style = None
|
19 |
|
20 |
+
def __init__(self, prompt_style=PromptStyle.instruct.value):
|
21 |
self.prompt_style = prompt_style if prompt_style else PromptStyle.instruct.value
|
22 |
self.match_prompt_style()
|
23 |
|