outdated chat template
#3
by
AaronFeng753
- opened
The chat template of Seed-OSS-36B-Instruct has been updated, and changes how model should handle zero thinking budget, so the chat template inside the gguf is outdated
before:
{%- if thinking_budget == 0 %}
{{ think_begin_token+budget_begin_token }}
after:
{%- if thinking_budget == 0 %}
{{ think_begin_token + "\n" + budget_begin_token + "The current thinking budget is 0, so I will directly start answering the question." + budget_end_token + "\n" + think_end_token }}