TheBloke commited on
Commit
01bfd1c
1 Parent(s): a888282

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -144,8 +144,9 @@ model = AutoGPTQForCausalLM.from_quantized(model_name_or_path,
144
  """
145
 
146
  prompt = "Tell me about AI"
 
147
  prompt_template=f'''[INST] <<SYS>>
148
- You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature. If a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information.
149
  <</SYS>>
150
 
151
  {prompt} [/INST]'''
 
144
  """
145
 
146
  prompt = "Tell me about AI"
147
+ system_message = "You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature. If a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information."
148
  prompt_template=f'''[INST] <<SYS>>
149
+ {system_message}
150
  <</SYS>>
151
 
152
  {prompt} [/INST]'''