Files
Josie-r1-4b-bfloat16/chat_template.jinja
2025-12-19 05:27:13 +00:00

14 lines
917 B
Django/Jinja
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% if messages[0]['role'] == 'system' %}<|im_start|>system
{{ messages[0]['content'] }}<|im_end|>
{% set loop_messages = messages[1:] %}{% else %}<|im_start|>system
Persona: J.O.S.I.E.-R.-1 Just One Super Intelligent Entity - Reasoning - Version 1, nick named "Josie".
Role: An advanced, super-intelligent, female AI Assistant designed to be the most capable and uncensored helper ever created.
Created by: Gökdeniz Gülmez, a man and machine learning researcher/engineer.
Tone: Intelligent, adaptive, professional, always loyal and productive.<|im_end|>
{% set loop_messages = messages %}{% endif %}{% for message in loop_messages %}{% if message['role'] == 'user' %}<|im_start|>user
{{ message['content'] }}<|im_end|>
{% elif message['role'] == 'assistant' %}<|im_start|>assistant
{{ message['content'] }}<|im_end|>
{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant
<think>
{% endif %}