vllm.reasoning.qwen3_reasoning_parser ¶
Qwen3ReasoningParser ¶
Bases: BaseThinkingReasoningParser
Reasoning parser for the Qwen3/Qwen3.5 model family.
The Qwen3 model family uses
When thinking is disabled, the template places
NOTE: Models up to the 2507 release (e.g., Qwen/Qwen3-235B-A22B-Instruct-2507) use an older chat template where the model generates
Source code in vllm/reasoning/qwen3_reasoning_parser.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | |
_split_embedded_tool_calls staticmethod ¶
_split_embedded_tool_calls(
reasoning: str | None, content: str | None
) -> tuple[str | None, str | None]
Promote tool-call XML blocks out of reasoning into content.
Qwen3.5 models can emit XML tool calls before </think>. The serving stack parses reasoning before tool calls, so these embedded tool calls would otherwise be lost because downstream tool parsers only inspect the content channel.
Source code in vllm/reasoning/qwen3_reasoning_parser.py
extract_reasoning ¶
extract_reasoning(
model_output: str,
request: ChatCompletionRequest | ResponsesRequest,
) -> tuple[str | None, str | None]
Extract reasoning content from the model output.
The
When thinking is explicitly disabled and no appears, returns (None, model_output) — all output is content. Otherwise (thinking enabled, default), a missing means the output was truncated and everything is reasoning: returns (model_output, None).
Returns:
| Type | Description |
|---|---|
tuple[str | None, str | None] | tuple[Optional[str], Optional[str]]: reasoning content and content |
Source code in vllm/reasoning/qwen3_reasoning_parser.py
extract_reasoning_streaming ¶
extract_reasoning_streaming(
previous_text: str,
current_text: str,
delta_text: str,
previous_token_ids: Sequence[int],
current_token_ids: Sequence[int],
delta_token_ids: Sequence[int],
) -> DeltaMessage | None
Extract reasoning content from a streaming delta.
Since
NOTE: When thinking is disabled, no think tokens appear in the generated output. The serving layer detects this via prompt_is_reasoning_end and routes deltas as content without calling this method.