91 lines
3.7 KiB
Plaintext
91 lines
3.7 KiB
Plaintext
|
|
{%- if tools %}
|
||
|
|
{{- '<|im_start|>system\n' }}
|
||
|
|
{%- if messages[0].role == 'system' %}
|
||
|
|
{{- messages[0].content + '\n\n' }}
|
||
|
|
{%- endif %}
|
||
|
|
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n\n<tools>" }}
|
||
|
|
{%- for tool in tools %}
|
||
|
|
{{- "\n" }}
|
||
|
|
{{- tool | tojson }}
|
||
|
|
{%- endfor %}
|
||
|
|
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
||
|
|
{%- else %}
|
||
|
|
{%- if messages[0].role == 'system' %}
|
||
|
|
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
||
|
|
{%- endif %}
|
||
|
|
{%- endif %}
|
||
|
|
|
||
|
|
{%- set ns = namespace(thinking_response_started=false, last_user_message_index=-1) %}
|
||
|
|
|
||
|
|
{%- for message in messages %}
|
||
|
|
{%- if message.role == 'user' %}
|
||
|
|
{%- set ns.last_user_message_index = loop.index0 %}
|
||
|
|
{%- endif %}
|
||
|
|
{%- endfor %}
|
||
|
|
|
||
|
|
{%- for message in messages %}
|
||
|
|
{%- if message.role in ['user', 'assistant', 'tool'] %}
|
||
|
|
|
||
|
|
{%- if message.role == 'user' %}
|
||
|
|
{%- if not tools and loop.index0 == 0 and messages[0].role != 'system' %}
|
||
|
|
{{- '<|im_start|>user\n' + message.content + '<|im_end|>\n' }}
|
||
|
|
{%- else %}
|
||
|
|
{{- '<|im_start|>user\n' + message.content + '<|im_end|>\n' }}
|
||
|
|
{%- endif %}
|
||
|
|
|
||
|
|
{%- elif message.role == 'assistant' %}
|
||
|
|
{%- set content = message.content %}
|
||
|
|
{%- set has_tool_calls = message.tool_calls is defined and message.tool_calls %}
|
||
|
|
|
||
|
|
{{- '<|im_start|>assistant\n' }}
|
||
|
|
|
||
|
|
{# Handle thinking mode: strip <think> blocks from history except for the most recent user turn #}
|
||
|
|
{%- if loop.index0 > ns.last_user_message_index %}
|
||
|
|
{%- if content is string and content.startswith('<think>') %}
|
||
|
|
{{- content }}
|
||
|
|
{%- elif content is string %}
|
||
|
|
{%- if enable_thinking is defined and enable_thinking == false %}
|
||
|
|
{{- '<think>\n\n</think>\n\n' }}
|
||
|
|
{%- endif %}
|
||
|
|
{{- content }}
|
||
|
|
{%- endif %}
|
||
|
|
{%- else %}
|
||
|
|
{# Older turns: strip think blocks to save context #}
|
||
|
|
{%- if content is string %}
|
||
|
|
{%- set stripped = content %}
|
||
|
|
{%- if '</think>' in stripped %}
|
||
|
|
{%- set stripped = stripped.split('</think>')[-1].lstrip('\n') %}
|
||
|
|
{%- endif %}
|
||
|
|
{{- stripped }}
|
||
|
|
{%- endif %}
|
||
|
|
{%- endif %}
|
||
|
|
|
||
|
|
{%- if has_tool_calls %}
|
||
|
|
{%- for tool_call in message.tool_calls %}
|
||
|
|
{{- '\n<tool_call>\n' }}
|
||
|
|
{{- '{"name": "' + tool_call.function.name + '", "arguments": ' }}
|
||
|
|
{%- if tool_call.function.arguments is string %}
|
||
|
|
{{- tool_call.function.arguments }}
|
||
|
|
{%- else %}
|
||
|
|
{{- tool_call.function.arguments | tojson }}
|
||
|
|
{%- endif %}
|
||
|
|
{{- '}\n</tool_call>' }}
|
||
|
|
{%- endfor %}
|
||
|
|
{%- endif %}
|
||
|
|
|
||
|
|
{{- '<|im_end|>\n' }}
|
||
|
|
|
||
|
|
{%- elif message.role == 'tool' %}
|
||
|
|
{{- '<|im_start|>user\n<tool_response>\n' + message.content + '\n</tool_response><|im_end|>\n' }}
|
||
|
|
{%- endif %}
|
||
|
|
|
||
|
|
{%- endif %}
|
||
|
|
{%- endfor %}
|
||
|
|
|
||
|
|
{%- if add_generation_prompt %}
|
||
|
|
{{- '<|im_start|>assistant\n' }}
|
||
|
|
{%- if enable_thinking is defined and enable_thinking == false %}
|
||
|
|
{{- '<think>\n\n</think>\n\n' }}
|
||
|
|
{%- endif %}
|
||
|
|
{%- endif %}
|