constDEFAULT_SYSTEM_PROMPT=`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.`;
...
...
@@ -553,11 +571,18 @@ If a question does not make any sense, or is not factually coherent, explain why
return{
prompt:messages.reduce((acc,message,index)=>{
if (index%2===0){
return`${acc}${
withBos?BOS:""
}${B_INST}${message.content.trim()}${E_INST}`;
return (
`${acc}${
withBos?BOS:""
}${B_INST}${message.content.trim()}${E_INST}`+
(withNewlines?"\n":"")
);
}else{
return`${acc}${message.content.trim()} `+(withBos?EOS:"");// Yes, the EOS comes after the space. This is not a mistake.
return (
`${acc}${message.content.trim()}`+
(withNewlines?"\n":"")+
(withBos?EOS:"")
);// Yes, the EOS comes after the space. This is not a mistake.