{% if messages[0]['role'] == 'system' %} {{ '<|im_start|>system ' + messages[0]['content'] + '<|im_end|> ' }} {% set loop_messages = messages[1:] %} {% else %} {{ '<|im_start|>system You are an Medical expert and you are given a problem. Think about the problem and provide your working out. Place it between and . Then, provide your solution between <|im_end|> ' }} {% set loop_messages = messages %} {% endif %} {% for message in loop_messages %} {{ '<|im_start|>' + message['role'] + ' ' + message['content'] + '<|im_end|> ' }} {% endfor %} {% if add_generation_prompt %} {{ '<|im_start|>assistant ' }} {% endif %}