Upload KORMo tokenizer
Browse files- chat_template.jinja +95 -0
- special_tokens_map.json +23 -0
- tokenizer.json +0 -0
- tokenizer_config.json +343 -0
    	
        chat_template.jinja
    ADDED
    
    | @@ -0,0 +1,95 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {%- if tools %}
         | 
| 2 | 
            +
                {{- '<|BOT|>system\n' }}
         | 
| 3 | 
            +
                {%- if messages[0].role == 'system' %}
         | 
| 4 | 
            +
                    {{- messages[0].content + '\n\n' }}
         | 
| 5 | 
            +
                {%- endif %}
         | 
| 6 | 
            +
                {{- "# 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<tools>" }}
         | 
| 7 | 
            +
                {%- for tool in tools %}
         | 
| 8 | 
            +
                    {{- "\n" }}
         | 
| 9 | 
            +
                    {{- tool | tojson }}
         | 
| 10 | 
            +
                {%- endfor %}
         | 
| 11 | 
            +
                {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|EOT|>\n" }}
         | 
| 12 | 
            +
            {%- else %}
         | 
| 13 | 
            +
                {%- if messages[0].role == 'system' %}
         | 
| 14 | 
            +
                    {{- '<|BOT|>system\n' + messages[0].content + '<|EOT|>\n' }}
         | 
| 15 | 
            +
                {%- endif %}
         | 
| 16 | 
            +
            {%- endif %}
         | 
| 17 | 
            +
            {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
         | 
| 18 | 
            +
            {%- for message in messages[::-1] %}
         | 
| 19 | 
            +
                {%- set index = (messages|length - 1) - loop.index0 %}
         | 
| 20 | 
            +
                {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
         | 
| 21 | 
            +
                    {%- set ns.multi_step_tool = false %}
         | 
| 22 | 
            +
                    {%- set ns.last_query_index = index %}
         | 
| 23 | 
            +
                {%- endif %}
         | 
| 24 | 
            +
            {%- endfor %}
         | 
| 25 | 
            +
            {%- for message in messages %}
         | 
| 26 | 
            +
                {%- if message.content is string %}
         | 
| 27 | 
            +
                    {%- set content = message.content %}
         | 
| 28 | 
            +
                {%- else %}
         | 
| 29 | 
            +
                    {%- set content = '' %}
         | 
| 30 | 
            +
                {%- endif %}
         | 
| 31 | 
            +
                {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
         | 
| 32 | 
            +
                    {{- '<|BOT|>' + message.role + '\n' + content + '<|EOT|>' + '\n' }}
         | 
| 33 | 
            +
                {%- elif message.role == "assistant" %}
         | 
| 34 | 
            +
                    {%- set reasoning_content = '' %}
         | 
| 35 | 
            +
                    {%- if message.reasoning_content is string %}
         | 
| 36 | 
            +
                        {%- set reasoning_content = message.reasoning_content %}
         | 
| 37 | 
            +
                    {%- else %}
         | 
| 38 | 
            +
                        {%- if '</think>' in content %}
         | 
| 39 | 
            +
                            {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
         | 
| 40 | 
            +
                            {%- set content = content.split('</think>')[-1].lstrip('\n') %}
         | 
| 41 | 
            +
                        {%- endif %}
         | 
| 42 | 
            +
                    {%- endif %}
         | 
| 43 | 
            +
                    {%- if loop.index0 > ns.last_query_index %}
         | 
| 44 | 
            +
                        {%- if loop.last or (not loop.last and reasoning_content) %}
         | 
| 45 | 
            +
                            {{- '<|BOT|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
         | 
| 46 | 
            +
                        {%- else %}
         | 
| 47 | 
            +
                            {{- '<|BOT|>' + message.role + '\n' + content }}
         | 
| 48 | 
            +
                        {%- endif %}
         | 
| 49 | 
            +
                    {%- else %}
         | 
| 50 | 
            +
                        {{- '<|BOT|>' + message.role + '\n' + content }}
         | 
| 51 | 
            +
                    {%- endif %}
         | 
| 52 | 
            +
                    {%- if message.tool_calls %}
         | 
| 53 | 
            +
                        {%- for tool_call in message.tool_calls %}
         | 
| 54 | 
            +
                            {%- if (loop.first and content) or (not loop.first) %}
         | 
| 55 | 
            +
                                {{- '\n' }}
         | 
| 56 | 
            +
                            {%- endif %}
         | 
| 57 | 
            +
                            {%- if tool_call.function %}
         | 
| 58 | 
            +
                                {%- set tool_call = tool_call.function %}
         | 
| 59 | 
            +
                            {%- endif %}
         | 
| 60 | 
            +
                            {{- '<tool_call>\n{"name": "' }}
         | 
| 61 | 
            +
                            {{- tool_call.name }}
         | 
| 62 | 
            +
                            {{- '", "arguments": ' }}
         | 
| 63 | 
            +
                            {%- if tool_call.arguments is string %}
         | 
| 64 | 
            +
                                {{- tool_call.arguments }}
         | 
| 65 | 
            +
                            {%- else %}
         | 
| 66 | 
            +
                                {{- tool_call.arguments | tojson }}
         | 
| 67 | 
            +
                            {%- endif %}
         | 
| 68 | 
            +
                            {{- '}\n</tool_call>' }}
         | 
| 69 | 
            +
                        {%- endfor %}
         | 
| 70 | 
            +
                    {%- endif %}
         | 
| 71 | 
            +
                    {{- '<|EOT|>\n' }}
         | 
| 72 | 
            +
                {%- elif message.role == "tool" %}
         | 
| 73 | 
            +
                    {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
         | 
| 74 | 
            +
                        {{- '<|BOT|>user' }}
         | 
| 75 | 
            +
                    {%- endif %}
         | 
| 76 | 
            +
                    {{- '\n<tool_response>\n' }}
         | 
| 77 | 
            +
                    {{- content }}
         | 
| 78 | 
            +
                    {{- '\n</tool_response>' }}
         | 
| 79 | 
            +
                    {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
         | 
| 80 | 
            +
                        {{- '<|EOT|>\n' }}
         | 
| 81 | 
            +
                    {%- endif %}
         | 
| 82 | 
            +
                {%- endif %}
         | 
| 83 | 
            +
            {%- endfor %}
         | 
| 84 | 
            +
            {%- if add_generation_prompt %}
         | 
| 85 | 
            +
                {{- '<|BOT|>assistant\n' }}
         | 
| 86 | 
            +
                {%- if enable_thinking is defined %}
         | 
| 87 | 
            +
                    {%- if not enable_thinking %}
         | 
| 88 | 
            +
                        {{- '<think>\n\n</think>\n' }}
         | 
| 89 | 
            +
                    {%- else %}
         | 
| 90 | 
            +
                        {{-'<think>\n'}}
         | 
| 91 | 
            +
                    {%- endif %}
         | 
| 92 | 
            +
                {%- else %}
         | 
| 93 | 
            +
                    {{- '<think>\n\n</think>\n' }}
         | 
| 94 | 
            +
                {%- endif %}
         | 
| 95 | 
            +
            {%- endif %}
         | 
    	
        special_tokens_map.json
    ADDED
    
    | @@ -0,0 +1,23 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "bos_token": {
         | 
| 3 | 
            +
                "content": "<|BOS|>",
         | 
| 4 | 
            +
                "lstrip": false,
         | 
| 5 | 
            +
                "normalized": true,
         | 
| 6 | 
            +
                "rstrip": false,
         | 
| 7 | 
            +
                "single_word": false
         | 
| 8 | 
            +
              },
         | 
| 9 | 
            +
              "eos_token": {
         | 
| 10 | 
            +
                "content": "<|EOT|>",
         | 
| 11 | 
            +
                "lstrip": false,
         | 
| 12 | 
            +
                "normalized": false,
         | 
| 13 | 
            +
                "rstrip": false,
         | 
| 14 | 
            +
                "single_word": false
         | 
| 15 | 
            +
              },
         | 
| 16 | 
            +
              "pad_token": {
         | 
| 17 | 
            +
                "content": "<|PAD|>",
         | 
| 18 | 
            +
                "lstrip": false,
         | 
| 19 | 
            +
                "normalized": true,
         | 
| 20 | 
            +
                "rstrip": false,
         | 
| 21 | 
            +
                "single_word": false
         | 
| 22 | 
            +
              }
         | 
| 23 | 
            +
            }
         | 
    	
        tokenizer.json
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
    	
        tokenizer_config.json
    ADDED
    
    | @@ -0,0 +1,343 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "added_tokens_decoder": {
         | 
| 3 | 
            +
                "125000": {
         | 
| 4 | 
            +
                  "content": "\n\n",
         | 
| 5 | 
            +
                  "lstrip": false,
         | 
| 6 | 
            +
                  "normalized": false,
         | 
| 7 | 
            +
                  "rstrip": false,
         | 
| 8 | 
            +
                  "single_word": false,
         | 
| 9 | 
            +
                  "special": false
         | 
| 10 | 
            +
                },
         | 
| 11 | 
            +
                "125001": {
         | 
| 12 | 
            +
                  "content": "\n\n\n",
         | 
| 13 | 
            +
                  "lstrip": false,
         | 
| 14 | 
            +
                  "normalized": false,
         | 
| 15 | 
            +
                  "rstrip": false,
         | 
| 16 | 
            +
                  "single_word": false,
         | 
| 17 | 
            +
                  "special": false
         | 
| 18 | 
            +
                },
         | 
| 19 | 
            +
                "125002": {
         | 
| 20 | 
            +
                  "content": "\n\n\n\n",
         | 
| 21 | 
            +
                  "lstrip": false,
         | 
| 22 | 
            +
                  "normalized": false,
         | 
| 23 | 
            +
                  "rstrip": false,
         | 
| 24 | 
            +
                  "single_word": false,
         | 
| 25 | 
            +
                  "special": false
         | 
| 26 | 
            +
                },
         | 
| 27 | 
            +
                "125003": {
         | 
| 28 | 
            +
                  "content": "\n\n\n\n\n",
         | 
| 29 | 
            +
                  "lstrip": false,
         | 
| 30 | 
            +
                  "normalized": false,
         | 
| 31 | 
            +
                  "rstrip": false,
         | 
| 32 | 
            +
                  "single_word": false,
         | 
| 33 | 
            +
                  "special": false
         | 
| 34 | 
            +
                },
         | 
| 35 | 
            +
                "125004": {
         | 
| 36 | 
            +
                  "content": "\n\n\n\n\n\n",
         | 
| 37 | 
            +
                  "lstrip": false,
         | 
| 38 | 
            +
                  "normalized": false,
         | 
| 39 | 
            +
                  "rstrip": false,
         | 
| 40 | 
            +
                  "single_word": false,
         | 
| 41 | 
            +
                  "special": false
         | 
| 42 | 
            +
                },
         | 
| 43 | 
            +
                "125005": {
         | 
| 44 | 
            +
                  "content": "\n\n\n\n\n\n\n",
         | 
| 45 | 
            +
                  "lstrip": false,
         | 
| 46 | 
            +
                  "normalized": false,
         | 
| 47 | 
            +
                  "rstrip": false,
         | 
| 48 | 
            +
                  "single_word": false,
         | 
| 49 | 
            +
                  "special": false
         | 
| 50 | 
            +
                },
         | 
| 51 | 
            +
                "125006": {
         | 
| 52 | 
            +
                  "content": "\n\n\n\n\n\n\n\n",
         | 
| 53 | 
            +
                  "lstrip": false,
         | 
| 54 | 
            +
                  "normalized": false,
         | 
| 55 | 
            +
                  "rstrip": false,
         | 
| 56 | 
            +
                  "single_word": false,
         | 
| 57 | 
            +
                  "special": false
         | 
| 58 | 
            +
                },
         | 
| 59 | 
            +
                "125007": {
         | 
| 60 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n",
         | 
| 61 | 
            +
                  "lstrip": false,
         | 
| 62 | 
            +
                  "normalized": false,
         | 
| 63 | 
            +
                  "rstrip": false,
         | 
| 64 | 
            +
                  "single_word": false,
         | 
| 65 | 
            +
                  "special": false
         | 
| 66 | 
            +
                },
         | 
| 67 | 
            +
                "125008": {
         | 
| 68 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n",
         | 
| 69 | 
            +
                  "lstrip": false,
         | 
| 70 | 
            +
                  "normalized": false,
         | 
| 71 | 
            +
                  "rstrip": false,
         | 
| 72 | 
            +
                  "single_word": false,
         | 
| 73 | 
            +
                  "special": false
         | 
| 74 | 
            +
                },
         | 
| 75 | 
            +
                "125009": {
         | 
| 76 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 77 | 
            +
                  "lstrip": false,
         | 
| 78 | 
            +
                  "normalized": false,
         | 
| 79 | 
            +
                  "rstrip": false,
         | 
| 80 | 
            +
                  "single_word": false,
         | 
| 81 | 
            +
                  "special": false
         | 
| 82 | 
            +
                },
         | 
| 83 | 
            +
                "125010": {
         | 
| 84 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 85 | 
            +
                  "lstrip": false,
         | 
| 86 | 
            +
                  "normalized": false,
         | 
| 87 | 
            +
                  "rstrip": false,
         | 
| 88 | 
            +
                  "single_word": false,
         | 
| 89 | 
            +
                  "special": false
         | 
| 90 | 
            +
                },
         | 
| 91 | 
            +
                "125011": {
         | 
| 92 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 93 | 
            +
                  "lstrip": false,
         | 
| 94 | 
            +
                  "normalized": false,
         | 
| 95 | 
            +
                  "rstrip": false,
         | 
| 96 | 
            +
                  "single_word": false,
         | 
| 97 | 
            +
                  "special": false
         | 
| 98 | 
            +
                },
         | 
| 99 | 
            +
                "125012": {
         | 
| 100 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 101 | 
            +
                  "lstrip": false,
         | 
| 102 | 
            +
                  "normalized": false,
         | 
| 103 | 
            +
                  "rstrip": false,
         | 
| 104 | 
            +
                  "single_word": false,
         | 
| 105 | 
            +
                  "special": false
         | 
| 106 | 
            +
                },
         | 
| 107 | 
            +
                "125013": {
         | 
| 108 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 109 | 
            +
                  "lstrip": false,
         | 
| 110 | 
            +
                  "normalized": false,
         | 
| 111 | 
            +
                  "rstrip": false,
         | 
| 112 | 
            +
                  "single_word": false,
         | 
| 113 | 
            +
                  "special": false
         | 
| 114 | 
            +
                },
         | 
| 115 | 
            +
                "125014": {
         | 
| 116 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 117 | 
            +
                  "lstrip": false,
         | 
| 118 | 
            +
                  "normalized": false,
         | 
| 119 | 
            +
                  "rstrip": false,
         | 
| 120 | 
            +
                  "single_word": false,
         | 
| 121 | 
            +
                  "special": false
         | 
| 122 | 
            +
                },
         | 
| 123 | 
            +
                "125015": {
         | 
| 124 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 125 | 
            +
                  "lstrip": false,
         | 
| 126 | 
            +
                  "normalized": false,
         | 
| 127 | 
            +
                  "rstrip": false,
         | 
| 128 | 
            +
                  "single_word": false,
         | 
| 129 | 
            +
                  "special": false
         | 
| 130 | 
            +
                },
         | 
| 131 | 
            +
                "125016": {
         | 
| 132 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 133 | 
            +
                  "lstrip": false,
         | 
| 134 | 
            +
                  "normalized": false,
         | 
| 135 | 
            +
                  "rstrip": false,
         | 
| 136 | 
            +
                  "single_word": false,
         | 
| 137 | 
            +
                  "special": false
         | 
| 138 | 
            +
                },
         | 
| 139 | 
            +
                "125017": {
         | 
| 140 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 141 | 
            +
                  "lstrip": false,
         | 
| 142 | 
            +
                  "normalized": false,
         | 
| 143 | 
            +
                  "rstrip": false,
         | 
| 144 | 
            +
                  "single_word": false,
         | 
| 145 | 
            +
                  "special": false
         | 
| 146 | 
            +
                },
         | 
| 147 | 
            +
                "125018": {
         | 
| 148 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 149 | 
            +
                  "lstrip": false,
         | 
| 150 | 
            +
                  "normalized": false,
         | 
| 151 | 
            +
                  "rstrip": false,
         | 
| 152 | 
            +
                  "single_word": false,
         | 
| 153 | 
            +
                  "special": false
         | 
| 154 | 
            +
                },
         | 
| 155 | 
            +
                "125019": {
         | 
| 156 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 157 | 
            +
                  "lstrip": false,
         | 
| 158 | 
            +
                  "normalized": false,
         | 
| 159 | 
            +
                  "rstrip": false,
         | 
| 160 | 
            +
                  "single_word": false,
         | 
| 161 | 
            +
                  "special": false
         | 
| 162 | 
            +
                },
         | 
| 163 | 
            +
                "125020": {
         | 
| 164 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 165 | 
            +
                  "lstrip": false,
         | 
| 166 | 
            +
                  "normalized": false,
         | 
| 167 | 
            +
                  "rstrip": false,
         | 
| 168 | 
            +
                  "single_word": false,
         | 
| 169 | 
            +
                  "special": false
         | 
| 170 | 
            +
                },
         | 
| 171 | 
            +
                "125021": {
         | 
| 172 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 173 | 
            +
                  "lstrip": false,
         | 
| 174 | 
            +
                  "normalized": false,
         | 
| 175 | 
            +
                  "rstrip": false,
         | 
| 176 | 
            +
                  "single_word": false,
         | 
| 177 | 
            +
                  "special": false
         | 
| 178 | 
            +
                },
         | 
| 179 | 
            +
                "125022": {
         | 
| 180 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 181 | 
            +
                  "lstrip": false,
         | 
| 182 | 
            +
                  "normalized": false,
         | 
| 183 | 
            +
                  "rstrip": false,
         | 
| 184 | 
            +
                  "single_word": false,
         | 
| 185 | 
            +
                  "special": false
         | 
| 186 | 
            +
                },
         | 
| 187 | 
            +
                "125023": {
         | 
| 188 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 189 | 
            +
                  "lstrip": false,
         | 
| 190 | 
            +
                  "normalized": false,
         | 
| 191 | 
            +
                  "rstrip": false,
         | 
| 192 | 
            +
                  "single_word": false,
         | 
| 193 | 
            +
                  "special": false
         | 
| 194 | 
            +
                },
         | 
| 195 | 
            +
                "125024": {
         | 
| 196 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 197 | 
            +
                  "lstrip": false,
         | 
| 198 | 
            +
                  "normalized": false,
         | 
| 199 | 
            +
                  "rstrip": false,
         | 
| 200 | 
            +
                  "single_word": false,
         | 
| 201 | 
            +
                  "special": false
         | 
| 202 | 
            +
                },
         | 
| 203 | 
            +
                "125025": {
         | 
| 204 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 205 | 
            +
                  "lstrip": false,
         | 
| 206 | 
            +
                  "normalized": false,
         | 
| 207 | 
            +
                  "rstrip": false,
         | 
| 208 | 
            +
                  "single_word": false,
         | 
| 209 | 
            +
                  "special": false
         | 
| 210 | 
            +
                },
         | 
| 211 | 
            +
                "125026": {
         | 
| 212 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 213 | 
            +
                  "lstrip": false,
         | 
| 214 | 
            +
                  "normalized": false,
         | 
| 215 | 
            +
                  "rstrip": false,
         | 
| 216 | 
            +
                  "single_word": false,
         | 
| 217 | 
            +
                  "special": false
         | 
| 218 | 
            +
                },
         | 
| 219 | 
            +
                "125027": {
         | 
| 220 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 221 | 
            +
                  "lstrip": false,
         | 
| 222 | 
            +
                  "normalized": false,
         | 
| 223 | 
            +
                  "rstrip": false,
         | 
| 224 | 
            +
                  "single_word": false,
         | 
| 225 | 
            +
                  "special": false
         | 
| 226 | 
            +
                },
         | 
| 227 | 
            +
                "125028": {
         | 
| 228 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 229 | 
            +
                  "lstrip": false,
         | 
| 230 | 
            +
                  "normalized": false,
         | 
| 231 | 
            +
                  "rstrip": false,
         | 
| 232 | 
            +
                  "single_word": false,
         | 
| 233 | 
            +
                  "special": false
         | 
| 234 | 
            +
                },
         | 
| 235 | 
            +
                "125029": {
         | 
| 236 | 
            +
                  "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
         | 
| 237 | 
            +
                  "lstrip": false,
         | 
| 238 | 
            +
                  "normalized": false,
         | 
| 239 | 
            +
                  "rstrip": false,
         | 
| 240 | 
            +
                  "single_word": false,
         | 
| 241 | 
            +
                  "special": false
         | 
| 242 | 
            +
                },
         | 
| 243 | 
            +
                "125030": {
         | 
| 244 | 
            +
                  "content": "<|BOS|>",
         | 
| 245 | 
            +
                  "lstrip": false,
         | 
| 246 | 
            +
                  "normalized": true,
         | 
| 247 | 
            +
                  "rstrip": false,
         | 
| 248 | 
            +
                  "single_word": false,
         | 
| 249 | 
            +
                  "special": true
         | 
| 250 | 
            +
                },
         | 
| 251 | 
            +
                "125031": {
         | 
| 252 | 
            +
                  "content": "<|EOS|>",
         | 
| 253 | 
            +
                  "lstrip": false,
         | 
| 254 | 
            +
                  "normalized": true,
         | 
| 255 | 
            +
                  "rstrip": false,
         | 
| 256 | 
            +
                  "single_word": false,
         | 
| 257 | 
            +
                  "special": true
         | 
| 258 | 
            +
                },
         | 
| 259 | 
            +
                "125032": {
         | 
| 260 | 
            +
                  "content": "<|PAD|>",
         | 
| 261 | 
            +
                  "lstrip": false,
         | 
| 262 | 
            +
                  "normalized": true,
         | 
| 263 | 
            +
                  "rstrip": false,
         | 
| 264 | 
            +
                  "single_word": false,
         | 
| 265 | 
            +
                  "special": true
         | 
| 266 | 
            +
                },
         | 
| 267 | 
            +
                "125033": {
         | 
| 268 | 
            +
                  "content": "<think>",
         | 
| 269 | 
            +
                  "lstrip": false,
         | 
| 270 | 
            +
                  "normalized": true,
         | 
| 271 | 
            +
                  "rstrip": false,
         | 
| 272 | 
            +
                  "single_word": false,
         | 
| 273 | 
            +
                  "special": false
         | 
| 274 | 
            +
                },
         | 
| 275 | 
            +
                "125034": {
         | 
| 276 | 
            +
                  "content": "</think>",
         | 
| 277 | 
            +
                  "lstrip": false,
         | 
| 278 | 
            +
                  "normalized": true,
         | 
| 279 | 
            +
                  "rstrip": false,
         | 
| 280 | 
            +
                  "single_word": false,
         | 
| 281 | 
            +
                  "special": false
         | 
| 282 | 
            +
                },
         | 
| 283 | 
            +
                "125035": {
         | 
| 284 | 
            +
                  "content": "<tool_call>",
         | 
| 285 | 
            +
                  "lstrip": false,
         | 
| 286 | 
            +
                  "normalized": false,
         | 
| 287 | 
            +
                  "rstrip": false,
         | 
| 288 | 
            +
                  "single_word": false,
         | 
| 289 | 
            +
                  "special": false
         | 
| 290 | 
            +
                },
         | 
| 291 | 
            +
                "125036": {
         | 
| 292 | 
            +
                  "content": "</tool_call>",
         | 
| 293 | 
            +
                  "lstrip": false,
         | 
| 294 | 
            +
                  "normalized": false,
         | 
| 295 | 
            +
                  "rstrip": false,
         | 
| 296 | 
            +
                  "single_word": false,
         | 
| 297 | 
            +
                  "special": false
         | 
| 298 | 
            +
                },
         | 
| 299 | 
            +
                "125037": {
         | 
| 300 | 
            +
                  "content": "<tool_response>",
         | 
| 301 | 
            +
                  "lstrip": false,
         | 
| 302 | 
            +
                  "normalized": false,
         | 
| 303 | 
            +
                  "rstrip": false,
         | 
| 304 | 
            +
                  "single_word": false,
         | 
| 305 | 
            +
                  "special": false
         | 
| 306 | 
            +
                },
         | 
| 307 | 
            +
                "125038": {
         | 
| 308 | 
            +
                  "content": "</tool_response>",
         | 
| 309 | 
            +
                  "lstrip": false,
         | 
| 310 | 
            +
                  "normalized": false,
         | 
| 311 | 
            +
                  "rstrip": false,
         | 
| 312 | 
            +
                  "single_word": false,
         | 
| 313 | 
            +
                  "special": false
         | 
| 314 | 
            +
                },
         | 
| 315 | 
            +
                "125039": {
         | 
| 316 | 
            +
                  "content": "<|BOT|>",
         | 
| 317 | 
            +
                  "lstrip": false,
         | 
| 318 | 
            +
                  "normalized": false,
         | 
| 319 | 
            +
                  "rstrip": false,
         | 
| 320 | 
            +
                  "single_word": false,
         | 
| 321 | 
            +
                  "special": true
         | 
| 322 | 
            +
                },
         | 
| 323 | 
            +
                "125040": {
         | 
| 324 | 
            +
                  "content": "<|EOT|>",
         | 
| 325 | 
            +
                  "lstrip": false,
         | 
| 326 | 
            +
                  "normalized": false,
         | 
| 327 | 
            +
                  "rstrip": false,
         | 
| 328 | 
            +
                  "single_word": false,
         | 
| 329 | 
            +
                  "special": true
         | 
| 330 | 
            +
                }
         | 
| 331 | 
            +
              },
         | 
| 332 | 
            +
              "bos_token": "<|BOS|>",
         | 
| 333 | 
            +
              "clean_up_tokenization_spaces": false,
         | 
| 334 | 
            +
              "eos_token": "<|EOT|>",
         | 
| 335 | 
            +
              "extra_special_tokens": {},
         | 
| 336 | 
            +
              "model_input_names": [
         | 
| 337 | 
            +
                "input_ids",
         | 
| 338 | 
            +
                "attention_mask"
         | 
| 339 | 
            +
              ],
         | 
| 340 | 
            +
              "model_max_length": 1000000000000000019884624838656,
         | 
| 341 | 
            +
              "pad_token": "<|PAD|>",
         | 
| 342 | 
            +
              "tokenizer_class": "PreTrainedTokenizerFast"
         | 
| 343 | 
            +
            }
         | 

