go-vap-model-under-20B / chat_template.jinja
QuangHoDev's picture
Upload model trained with Unsloth
e9d5eb3 verified
raw
history blame contribute delete
480 Bytes
{{ bos_token }}{{ 'These are information about real estates. Predict the price of the real estate:' }}{% for message in messages %}{% if message['role'] == 'user' %}{{ '
>>> Information:
' + message['content'] }}{% elif message['role'] == 'assistant' %}{{ '
>>> Price:
' + message['content'] + '<|end_of_text|>' }}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '
>>> Price:
' }}{% endif %}