PromptTemplate.llama2Chat constructor

PromptTemplate.llama2Chat()

Implementation

factory PromptTemplate.llama2Chat() {
  return const PromptTemplate(
    label: 'Llama-2-Chat',
    promptTemplate:
        "[INST] <<SYS>>\n{systemMessage}\n<</SYS>>\n{prompt}[/INST]",
    prompt: 'How can I tell if my computer is infected with a virus?',
    systemMessage:
        "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.",
  );
}