Fixed jinja chat templates for Qwen 3.5, 3.6 & 3.8 (v22)

This is a universal drop-in Jinja template that fixes rendering errors, KV cache invalidation, token waste, empty think poisoning, and fatal agentic stalling across official Qwen chat templates.

It works across LM Studio, llama.cpp, vLLM, MLX, oMLX, KoboldCPP, and any engine that supports Hugging Face Jinja templates. You only need the single chat_template.jinja file at the root of this repository for all Qwen 3.5, 3.6, and 3.8 model sizes.


What is new in v22: The Qwen 3.8 Update

Qwen has released their 3.8 generation starting with Qwen3.8-2.4T-A95B. While the official 3.8 template adopted our default reasoning preservation, it also introduced severe regressions and rigid lockdowns that break local setups. Version 22 brings full 3.8 support while fixing these official bugs:

  1. Reasoning Effort Steering: Qwen 3.8 supports prompt-directed thinking budgets (xhigh, high, low, medium). The template injects official steering instructions into the system prompt by default (xhigh) and auto-suppresses them when thinking is turned off.
  2. Restored Fast Mode (No Reasoning): Official 3.8 throws a fatal runtime exception if you pass enable_thinking=false. Version 22 removes this lockdown, giving you complete freedom to disable reasoning via kwargs or inline <|think_off|> tags.
  3. Cured Official 3.8 Empty Think Bug: Official 3.8 removed the in-content thinking parser. In multi-turn chats where reasoning is stored inside message content, official 3.8 injects a blank <think></think> block before the real thoughts. Version 22 extracts reasoning cleanly without duplicating tags.
  4. Universal Tool Arguments: Official 3.8 crashes with TypeError: Can only get item pairs from a mapping when clients send standard OpenAI string arguments. Version 22 handles both Python dictionaries and JSON strings seamlessly.
  5. Native llama.cpp Flag Support: Added native support for the new llama.cpp --reasoning-preserve CLI flag via the preserve_reasoning alias.

Quick Install & Engine Setup

llama.cpp / llama-server / koboldcpp

Run llama-server with the template file and DeepSeek reasoning format:

llama-server -m your_model.gguf --jinja --chat-template-file chat_template.jinja --reasoning-format deepseek

Why --reasoning-format deepseek matters: When connecting coding agents like OpenCode, Claude Code, or Pi.dev to llama-server, this flag extracts <think> blocks into the dedicated reasoning_content API response field. This prevents raw thinking tokens from leaking into the text stream and stopping tool calls midway.

Native CLI flag: On recent llama.cpp builds, you can pass --reasoning-preserve directly to ensure 100% Prefix KV Cache retention.

LM Studio

  1. Open your Qwen model in the right side panel.
  2. Scroll down to Prompt Template.
  3. Replace the template with the contents of chat_template.jinja.
  4. Click Save.

vLLM

Replace the "chat_template" string in your tokenizer_config.json with chat_template_oneline.txt (or raw chat_template.jinja).

vllm serve Qwen/Qwen3.8-2.4T-A95B --tool-call-parser qwen3_xml

Parser selection: Use --tool-call-parser qwen3_xml on current vLLM releases. If you are on an older vLLM build, use --tool-call-parser qwen3_coder. If you explicitly set tool_call_format="json", use --tool-call-parser hermes.

oMLX / MLX

Overwrite chat_template.jinja in your local model directory and launch with --jinja.


Why you need this

The official Qwen templates contain engine restrictions, Python-specific Jinja logic, and regressions that break local inference and agent workflows.

Critical Issues Fixed
Area Issue in Official Templates The Fix in v22
Qwen 3.8 Support Official 3.8 crashes if enable_thinking=false. Restored Fast Mode. Supports fast non-reasoning mode via kwargs or <|think_off|>.
Qwen 3.8 Regression Official 3.8 injects duplicate blank <think></think> in chat history. Cured Empty Think Poisoning. Robust multi-format reasoning extraction.
Reasoning Control Qwen 3.8 prompt-steered reasoning budget controls. Full reasoning_effort Support. Supports xhigh (default), high, medium, and low.
Compatibility llama.cpp --reasoning-preserve CLI flag compatibility. Native Alias Support. Supports both preserve_reasoning and preserve_thinking.
Compatibility JSON-string tool arguments (OpenAI / Ollama) crash official templates. Universal Tool Parsing. Safely handles mappings, JSON strings, and scalar args.
Agentic Loop Model aborts turn when combining conversational text and a tool call. Cured "Empty Think" poisoning and softened imperative system directives.
Agentic Loop Model gets stuck emitting the identical failing tool call. Added two-tier error escalation to force correction while retaining reasoning.
Agentic Loop Model panics and debates internal rules after fetching data. Broadened <think> instructions to authorize conversational synthesis.
Agentic Loop API returns containing the word "error" trigger false retry loops. Replaced broad matching with strict structural guards.
Performance Mutated past turns destroy the prefix cache. Enforced chronological history for a 100% KV Cache hit rate.
Performance Deep Jinja nesting drops llama.cpp speed by 80%. Flattened the AST architecture to maximize throughput.
Compatibility Python-specific filters crash C++ inference engines. Rewrote all filters to be 100% minijinja safe.
Compatibility Qwen-native parsers (like vLLM) crash on JSON formatting. Maintained canonical Qwen XML format as the default.
Compatibility Older API setups and wrappers crash on native XML. Added a tool_call_format="json" opt-in override.
Compatibility Anthropic message.thinking payloads are rejected. Added native Anthropic reasoning support.
Stability Massive tool data returns blow out the context window. Added dynamic payload truncation limits.
Stability Mid-conversation system prompts crash the template. Added native support for arbitrary system and developer messages.
Edge Cases Text duplicates during streaming generation. Restored canonical spacing to the generation prompt.
Edge Cases Model hallucinates reasoning tags when thinking is disabled. Injected strict boundaries to force clean reasoning bypass.

Customization & Kwarg Reference

1. Reasoning Effort Steering (Qwen 3.8)

Qwen 3.8 introduces prompt-steered reasoning effort levels. You can control this via template kwargs:

{
  "reasoning_effort": "xhigh"
}
  • "xhigh" (Default / Recommended): Injects Qwen's official deep reasoning instruction:

    "Reasoning effort is set to xhigh. Please think carefully through the task, validate key assumptions, consider plausible alternatives, and prioritize correctness, consistency, and clarity in the final answer."

  • "high": Mapped automatically as an alias to "xhigh" for OpenAI proxy compatibility.
  • "low": Injects concise thinking instructions for fast, summary-oriented reasoning.
  • "medium": Neutral baseline (no extra instruction text injected). Ideal for users wanting exact byte-for-byte prefix cache parity with v21 sessions.

(Note: When thinking is disabled via <|think_off|> or enable_thinking=false, reasoning effort instructions are automatically suppressed).

2. The Thinking Toggle & Fast Mode

You can control model reasoning dynamically on a per-prompt basis. Insert <|think_on|> or <|think_off|> anywhere in your system or user prompt. The template intercepts the tag, strips it from the final context, and sets reasoning mode immediately.

Fast answer, no reasoning:

System: You are a coding assistant. <|think_off|>
User: What is 2+2?

Deep reasoning:

System: You are a coding assistant. <|think_on|>
User: Implement a red-black tree in Rust.

(The tag syntax uses Qwen control token delimiters so it will never collide with file paths or code, unlike old community /think hacks).

3. KV Cache Preservation (`preserve_reasoning` & `preserve_thinking`)

By default, this template preserves all past <think> blocks in the chat history. This prevents the model from suffering "amnesia stalls" during complex agentic loops and guarantees a 100% Prefix KV Cache hit rate on local inference engines.

  • On recent llama.cpp builds, pass --reasoning-preserve directly.
  • Or pass via template kwargs:
{
  "preserve_thinking": true
}

If you are on severely memory-constrained hardware and need to save context tokens, set "preserve_thinking": false (or "preserve_reasoning": false) to strip past thoughts.

4. Tool Call Format Override (JSON vs XML)

Qwen models are natively trained to output tool calls in XML (<function=name>). By default, this template uses native XML to maximize reliability.

When to use the JSON override: If you are using a framework or harness (such as specific Hermes Agent configurations) that strictly requires Hermes JSON ({"name": "...", "arguments": {...}}), pass:

{
  "tool_call_format": "json"
}

(When opting into JSON format, argument truncation is safely bypassed to avoid corrupting JSON syntax).

5. Dynamic Payload Truncation

To prevent oversized tool returns from blowing out context limits:

  • max_tool_arg_chars (default 0 / disabled): Slices oversized tool call arguments.
  • max_tool_response_chars (default 0 / disabled): Slices oversized tool output data.

Running the test suite
python3 scripts/test_v22.py

Tests cover 28 automated verification cells including reasoning_effort levels, tag pre-scanning, tool call serialization, dynamic truncation, error escalation, and multi-turn history parsing.


Authorship

Role Author
Original models Alibaba Cloud (Qwen team)
Template fixes froggeric
C++ AST optimizations barubary / spiritbuun

License

Apache-2.0, inherited from Qwen.


Technical Details of the Critical Fixes

1. The "Empty Think" Poisoning and Logic Trap Cure

Previous templates attempted to save tokens by replacing past thoughts with empty <think>\n</think> blocks, combined with an absolute system prompt demanding a tool be called immediately after </think>. This created a toxic pattern where the model associated empty thoughts with tools, causing an 80%+ premature turn abort rate. We abolished empty think injection and rewrote the <IMPORTANT> directives to explicitly authorize conversational synthesis after thinking. In v22, we also cured official Qwen 3.8's history bug where missing in-content parsers created duplicate blank think tags.

2. Upfront Pre-Scan for Control Tags

In Jinja templates, system prompts are assembled before iterating over message history. Version 22 introduces an upfront pre-scan covering both plain text and multi-part content lists ([{'type': 'text', 'text': '...'}]). This resolves <|think_off|> and <|think_on|> states before the system message is built, ensuring reasoning instructions are never injected into non-reasoning turns.

3. KV Cache Safety and Autoregressive Normalization

Llama.cpp and vLLM utilize prefix KV caching to speed up generation. Because this template preserves historical thoughts chronologically by default, rendered history perfectly synchronizes with cached generated tokens. Combined with strict single newline normalization at autoregressive boundaries, this achieves a 100% KV Cache hit rate in multi-turn sessions.

4. Native XML Tool Format and Universal Serialization

The model was trained with the XML tool format used by Qwen3-Coder. We restored this format natively while bypassing the |items crash by handling both mapping dictionaries and JSON strings. This eliminates crashes when standard OpenAI proxies pass stringified arguments.

5. Two-Tier Agentic Error Escalation

When a tool call fails validation repeatedly, the model can enter a degenerate reasoning spiral. This template leverages a two-tier escalation system driven by a forward-tracked consecutive_failures counter. On the first error, a diagnostic warning is injected. On the second consecutive error, an urgent system warning forces a fundamentally different approach while retaining the reasoning block so the model can plan its correction.

6. Smart False-Positive Detection

Instead of broad substring matching that triggers false retry loops on successful database returns containing words like "error", this template utilizes strict structural guards looking for Exception:, "error":, Traceback, and command not found, combined with length gates and shell echo exclusions ($ ).

7. minijinja Compatibility Constraints

Python-only Jinja2 features crash or misbehave on minijinja (the C++ runtime used by llama.cpp, LM Studio, and MLX). All instances have been refactored for universal support:

  • content | replace('<|think_on|>', '') became content.split('<|think_on|>') | join('') (fixes a bug where minja silently drops the entire text payload if the replaced string is found at index 0).
  • | items became for key in mapping.
  • loop.previtem became explicit array indexing.
  • map('string') became join('|').
  • | first became '$ ' in content.

8. AST Flattening for C++ Throughput

Deeply nested Jinja loops and macros create severe parsing bottlenecks in C++ inference engines. We flattened the AST architecture, effectively curing an 80% inference throughput drop on llama.cpp by streamlining how ns_state tracking and historical rendering loops are evaluated.

9. Dynamic Payload Truncation

Massive API or database returns can instantly blow out a model's context window. We implemented max_tool_arg_chars and max_tool_response_chars limiters that safely slice oversized payloads. Crucially, this truncation is automatically disabled when tool_call_format="json" is active, as slicing a serialized JSON string structurally corrupts the data and crashes downstream parsers.

10. Reasoning Bypass Hallucination Mitigation

When thinking is disabled, Qwen models often hallucinate reasoning tags due to their training bias. We injected a safe boundary and adjusted the <IMPORTANT> system block to remove explicit mentions of </think> during tool instructions. This stops the model from hallucinating closing tags when calling tools in a no-reasoning state.


Update History & Changelog

2026-08-13 Update (v22): Qwen 3.8 Support, Reasoning Effort Controls, and Engine Hardening.

  1. Qwen 3.8 Compatibility: Added full support for the new Qwen 3.8 model family (Qwen3.8-2.4T-A95B).
  2. Reasoning Effort Steering: Introduced reasoning_effort parameter (xhigh [default], high, medium, low). Automatically injects official Qwen 3.8 steering directives and auto-suppresses them when thinking is disabled.
  3. Cured Official 3.8 Empty Think Bug: Fixed a regression in the official Qwen 3.8 template where removing <think> extraction caused blank <think></think> blocks to be prepended to real thoughts in chat history.
  4. Restored Fast Mode: Replaced official 3.8's hard exception on enable_thinking=false, restoring full user freedom to disable reasoning via kwargs or <|think_off|>.
  5. llama.cpp --reasoning-preserve Alias: Added native support for preserve_reasoning alongside preserve_thinking.
  6. Universal Tool Argument Handling: Hardened tool call parsing to handle both dictionary structures and JSON-serialized strings without crashing.
  7. Pre-Scan Tag Gating: Upgraded control tag pre-scanning to inspect both raw string content and multi-part content lists before assembling system instructions.
  8. Retained Reasoning in Error Recovery: Maintained the <think>\n generation prompt during tool failure escalation so Qwen 3.8 can plan its corrected tool call.

2026-07-02 Update (v21.3): Optional JSON Tool Format Kwarg. Added an optional tool_call_format="json" override for chat_template_kwargs.

2026-07-02 Update (v21.2): Reasoning Bypass Hallucination Fix. Adjusted <IMPORTANT> block instructions to remove explicit mentions of </think> during tool definitions.

2026-07-02 Update (v21.1): Reliability Overhaul & XML Revert. Reverted to native XML format for vLLM qwen3_coder compatibility and restored preserve_thinking default to true.

2026-06-05 Update (v20): The Architect Patch. Major structural update for agentic loops and C++ inference engines.

2026-05-18 Update (v19): The Agentic Loop Cure. Abolished "Empty Think" poisoning and restored Universal Synthesis instructions.

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for froggeric/Qwen-Fixed-Chat-Templates

Finetunes
4 models

Space using froggeric/Qwen-Fixed-Chat-Templates 1

Collection including froggeric/Qwen-Fixed-Chat-Templates

MiniMax H3 Video Generator 20 free credits · Text & image to video Try Free →