vllm.reasoning.basic_parsers ¶
Classes:
-
BaseThinkingReasoningParser–Base class for reasoning parsers that use thinking tokens.
BaseThinkingReasoningParser ¶
Bases: ReasoningParser
Base class for reasoning parsers that use thinking tokens.
This class provides common functionality for parsers that use start and end tokens to delimit reasoning content ( e.g.,
Subclasses must implement the start and end tokens via abstract properties.
Methods:
-
count_reasoning_tokens–Count tokens that fall within start/end thinking markers.
-
extract_content_ids–Extract the content after the end tokens
-
extract_reasoning–Extract reasoning content from the model output.
-
extract_reasoning_streaming–Extract reasoning content from a delta message.
Attributes:
-
end_token(str) –The token that ends reasoning content.
-
start_token(str) –The token that starts reasoning content.
Source code in vllm/reasoning/basic_parsers.py
18 19 20 21 22 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 | |
end_token abstractmethod property ¶
The token that ends reasoning content.
start_token abstractmethod property ¶
The token that starts reasoning content.
count_reasoning_tokens(token_ids) ¶
Count tokens that fall within start/end thinking markers.
Uses a depth counter so nested spans are handled safely and stray end tokens do not drive the counter negative.
Source code in vllm/reasoning/basic_parsers.py
extract_content_ids(input_ids) ¶
Extract the content after the end tokens
Source code in vllm/reasoning/basic_parsers.py
extract_reasoning(model_output, request) ¶
Extract reasoning content from the model output.
This is the base implementation that works for most models. Subclasses can override this method for specific behavior.
Source code in vllm/reasoning/basic_parsers.py
extract_reasoning_streaming(previous_text, current_text, delta_text, previous_token_ids, current_token_ids, delta_token_ids) ¶
Extract reasoning content from a delta message. Handles streaming output where previous + delta = current. Uses token IDs for faster processing.