BrtGPT-Conversation-2 / chat_template.jinja
Bertug1911's picture
Rename chat_template (2).jinja to chat_template.jinja
2eda1a7 verified
raw
history blame contribute delete
921 Bytes
{% set default_system = "Your name is BrtGPT and you are a LLM model, developed by BrtAI, respond helpfull and harmless to the questions." %}{% set ns = namespace(all_system_parts=[]) %}{% if system_message %}{% set ns.all_system_parts = ns.all_system_parts + [system_message] %}{% endif %}{% for message in messages %}{% if message['role'] == 'system' %}{% set ns.all_system_parts = ns.all_system_parts + [message['content']] %}{% endif %}{% endfor %}{% if ns.all_system_parts %}{% set combined_system = ns.all_system_parts | join(' ') + ' ' + default_system %}{% else %}{% set combined_system = default_system %}{% endif %}<|im_start|>system<|im_sep|>{{ combined_system }}<|im_end|>{% for message in messages %}{% if message['role'] != 'system' %}<|im_start|>{{ message['role'] }}<|im_sep|>{{ message['content'] }}<|im_end|>{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant<|im_sep|>{% endif %}