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

https://huggingface.co/ByteDance-Seed/Seed-OSS-36B-Instruct/commit/497f1dca95ebdec98e41d517b9f060ee753c902f

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 }}

Sign up or log in to comment