vllm.reasoning.gemma4_reasoning_parser ¶
Gemma4ReasoningParser ¶
Bases: BaseThinkingReasoningParser
Reasoning parser for Google Gemma4 thinking models.
Gemma4 uses <|channel>...enable_thinking=True in the chat template kwargs, which injects a system turn containing <|think|> (token 98) to trigger chain-of-thought reasoning.
Output pattern when thinking is enabled::
<|channel>thought
...chain of thought reasoning...<channel|>
Final answer text here.
The thought\n role label inside the channel delimiters is a structural artefact (analogous to user\n in <|turn>user\n...). This parser strips it so that downstream consumers see only the actual reasoning text, consistent with the offline parser (vllm.reasoning.gemma4_utils._strip_thought_label).
Source code in vllm/reasoning/gemma4_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 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | |
adjust_request ¶
adjust_request(
request: ChatCompletionRequest | ResponsesRequest,
) -> ChatCompletionRequest | ResponsesRequest
Disable special-token stripping to preserve boundary tokens.
Source code in vllm/reasoning/gemma4_reasoning_parser.py
extract_reasoning ¶
extract_reasoning(
model_output: str,
request: ChatCompletionRequest | ResponsesRequest,
) -> tuple[str | None, str | None]
Extract reasoning, stripping the thought\n role label.
Source code in vllm/reasoning/gemma4_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 streaming reasoning, stripping thought\n from the first reasoning delta(s).
The thought\n prefix may arrive as a single delta or split across multiple deltas (e.g. "thought" then "\n"). We buffer early reasoning tokens until we can determine whether the prefix is present, then emit the buffered content minus the prefix.
Unlike the previous implementation which reconstructed accumulated reasoning from current_text, this uses instance state (_reasoning_text) to track only the reasoning content returned by the base parser. This is necessary because skip_special_tokens=True (the vLLM default) causes the <|channel> delimiter to be invisible in current_text, making it impossible to separate pre-reasoning content from reasoning content via string matching.
Source code in vllm/reasoning/gemma4_reasoning_parser.py
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 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | |
_strip_thought_label ¶
Remove the thought\n role label from the beginning of text.
Mirrors vllm.reasoning.gemma4_utils._strip_thought_label from the offline parser.