Adaptation of https://huggingface.co/teknium/OpenHermes-2-Mistral-7B, this is my first test so it maybe a bit too simple.
I preferred to use OpenAI prompt format, and let apply_chat_template
do the work:
[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Who won the world series in 2020?"},
{"role": "assistant", "content": "The Los Angeles Dodgers won the World Series in 2020."},
{"role": "user", "content": "Where was it played?"}
]