vllm.v1.structured_output.backend_xgrammar ¶
XgrammarBackend dataclass
¶
Bases: StructuredOutputBackend
Source code in vllm/v1/structured_output/backend_xgrammar.py
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 |
|
__post_init__ ¶
Source code in vllm/v1/structured_output/backend_xgrammar.py
compile_grammar ¶
compile_grammar(
request_type: StructuredOutputOptions, grammar_spec: str
) -> StructuredOutputGrammar
Source code in vllm/v1/structured_output/backend_xgrammar.py
XgrammarGrammar dataclass
¶
Bases: StructuredOutputGrammar
Source code in vllm/v1/structured_output/backend_xgrammar.py
_is_terminated class-attribute
instance-attribute
¶
num_processed_tokens class-attribute
instance-attribute
¶
__init__ ¶
__init__(
vocab_size: int,
matcher: GrammarMatcher,
ctx: CompiledGrammar,
_is_terminated: bool = False,
) -> None
accept_tokens ¶
Accepts a list of tokens and advances the FSM.
Returns True if the FSM was advanced successfully. Returns False if the FSM failed to advance.
Source code in vllm/v1/structured_output/backend_xgrammar.py
fill_bitmask ¶
reset ¶
validate_tokens ¶
Checks if the list of tokens are accepted by the FSM in sequence. Will not advance the FSM.
Returns the prefix list of tokens that are accepted by the FSM.
Source code in vllm/v1/structured_output/backend_xgrammar.py
has_xgrammar_unsupported_json_features ¶
Check if JSON schema contains features unsupported by xgrammar.
Source code in vllm/v1/structured_output/backend_xgrammar.py
validate_xgrammar_grammar ¶
validate_xgrammar_grammar(
sampling_params: SamplingParams,
) -> None
Validate that the request is supported by structured output.
Raises ValueError if the request is not supported.
Source code in vllm/v1/structured_output/backend_xgrammar.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
|