tool_chat_template_deepseekv3.jinja 4.71 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% if not add_generation_prompt is defined %}
    {% set add_generation_prompt = false %}
{% endif %}

{% set ns = namespace(is_first=false, is_tool=false, is_output_first=true, system_prompt='', is_first_sp=true, is_last_user=false) %}
{%- for message in messages %}
    {%- if message['role'] == 'system' %}
        {%- if ns.is_first_sp %}
            {% set ns.system_prompt = ns.system_prompt + message['content'] %}
            {% set ns.is_first_sp = false %}
        {%- else %}
            {% set ns.system_prompt = ns.system_prompt + '\n\n' + message['content'] %}
        {%- endif %}
    {%- endif %}
15
{%- endfor -%}
16
17
18
19
20
21
22
23
24
25

{# --- Append tool descriptions if tools are defined --- #}
{% if tools is defined and tools is not none %}
    {% set tool_ns = namespace(text='You are a helpful assistant with tool calling capabilities. '
        'When a tool call is needed, you MUST use the following format to issue the call:\n'
        '<|tool▁calls▁begin|><|tool▁call▁begin|>function<|tool▁sep|>FUNCTION_NAME\n'
        '```json\n{"param1": "value1", "param2": "value2"}\n```<|tool▁call▁end|><|tool▁calls▁end|>\n\n'
        'Make sure the JSON is valid.'
        '## Tools\n\n### Function\n\nYou have the following functions available:\n\n') %}
    {% for tool in tools %}
26
        {% set tool_ns.text = tool_ns.text + '\n```json\n' + (tool | tojson) + '\n```\n' %}
27
28
29
30
    {% endfor %}
    {% set ns.system_prompt = ns.system_prompt + '\n\n' + tool_ns.text %}
{% endif %}

31
32
{{- bos_token }}
{{- ns.system_prompt }}
33
34
35
36
37
38
39
40
41
42
43

{%- for message in messages %}
    {%- if message['role'] == 'user' %}
        {%- set ns.is_tool = false -%}
        {%- set ns.is_first = false -%}
        {%- set ns.is_last_user = true -%}
        {{'<|User|>' + message['content'] + '<|Assistant|>'}}
    {%- endif %}
    {%- if message['role'] == 'assistant' and message['tool_calls'] is defined and message['tool_calls'] is not none %}
        {%- set ns.is_last_user = false -%}
        {%- if ns.is_tool %}
44
            {{- '<|tool▁outputs▁end|>'}}
45
46
47
48
49
        {%- endif %}
        {%- set ns.is_first = false %}
        {%- set ns.is_tool = false -%}
        {%- set ns.is_output_first = true %}
        {%- for tool in message['tool_calls'] %}
50
            {%- set formatted_args = tool['function']['arguments'] if tool['function']['arguments'] is string else tool['function']['arguments']|tojson %}
51
52
            {%- if not ns.is_first %}
                {%- if message['content'] is none %}
53
                    {{- '<|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + formatted_args + '\n' + '```' + '<|tool▁call▁end|>'}}
54
                {%- else %}
55
                    {{- message['content'] + '<|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + formatted_args + '\n' + '```' + '<|tool▁call▁end|>'}}
56
57
58
                {%- endif %}
                {%- set ns.is_first = true -%}
            {%- else %}
59
                {{- '\n' + '<|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + formatted_args + '\n' + '```' + '<|tool▁call▁end|>'}}
60
61
            {%- endif %}
        {%- endfor %}
62
        {{- '<|tool▁calls▁end|><|end▁of▁sentence|>'}}
63
64
65
66
    {%- endif %}
    {%- if message['role'] == 'assistant' and (message['tool_calls'] is not defined or message['tool_calls'] is none)%}
        {%- set ns.is_last_user = false -%}
        {%- if ns.is_tool %}
67
            {{- '<|tool▁outputs▁end|>' + message['content'] + '<|end▁of▁sentence|>'}}
68
69
70
            {%- set ns.is_tool = false -%}
        {%- else %}
            {% set content = message['content'] %}
71
            {{- content + '<|end▁of▁sentence|>'}}
72
73
74
75
76
77
        {%- endif %}
    {%- endif %}
    {%- if message['role'] == 'tool' %}
        {%- set ns.is_last_user = false -%}
        {%- set ns.is_tool = true -%}
        {%- if ns.is_output_first %}
78
79
            {{- 'Use the results below to formulate an answer to the user question unless additional information is needed.' }}
            {{- '<|tool▁outputs▁begin|><|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}
80
81
            {%- set ns.is_output_first = false %}
        {%- else %}
82
            {{- '\n<|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}
83
84
85
86
87
        {%- endif %}
    {%- endif %}
{%- endfor -%}

{% if ns.is_tool %}
88
    {{- '<|tool▁outputs▁end|>'}}
89
90
{% endif %}
{% if add_generation_prompt and not ns.is_last_user and not ns.is_tool %}
91
    {{- '<|Assistant|>'}}
92
{% endif %}