Generating predictable and reliable outputs from large language models (LLMs) can be challenging, especially when those outputs need to integrate seamlessly with downstream systems. Structured outputs solve this problem by enforcing specific formats, such as JSON, regex patterns, or even formal grammars. vLLM, an open source inference and serving engine for LLMs, has supported structured outputs for a while. However, there is little documentation on how to use it. This is why I decided to contribute and write the Structured Outputs documentation page.
In this blog post, I'll explain how structured outputs work in vLLM and walk you through how to use them effectively.
Why structured outputs?
LLMs are incredibly powerful, but their outputs can be inconsistent when a specific format is required. Structured outputs address this issue by restricting the model’s generated text to adhere to predefined rules or formats, ensuring:
- Reliability: Outputs are predictable and machine-readable.
- Compatibility: Seamless integration with APIs, databases, or other systems.
- Efficiency: No need for extensive post-processing to validate or fix outputs.
Imagine there is an external system which receives a JSON object with the all the details to trigger an alert, and you want your LLM-based system to be able to use it. Of course you could try to explain the LLM what should be the output format and that it must be a valid JSON object, but LLMs are not deterministic and thus you may end up with an invalid JSON. Probably, if you have tried to do something like this before, you would have found yourself in this situation.
How do these tools work? The idea behind them is to filter a list of possible next tokens to force a valid token to be generated that produces the desired output format, for example, a valid JSON object.
What is vLLM?
vLLM is a state-of-the-art, open-source inference and serving engine for LLMs. It’s built for performance and simplicity, offering:
- PagedAttention: An innovative memory management mechanism for efficient attention key-value handling.
- Continuous batching: Supports concurrent requests dynamically.
- Advanced optimizations: Includes features like quantization, speculative decoding, and CUDA graphs.
These optimizations make vLLM one of the fastest and most versatile engines for production environments.
Structured outputs on vLLM
vLLM extends the OpenAI API with additional parameters to enable structured outputs. These include:
- guided_choice: Restricts output to a set of predefined choices.
- guided_regex: Ensures outputs match a given regex pattern.
- guided_json: Validates outputs against a JSON schema.
- guided_grammar: Enforces structure using context-free grammars.
Here’s how each works, along with example outputs:
1. Guided choice
Guided choice is the simplest form of structured output. It ensures the response is one from of a set of predefined options.
from openai import OpenAI client = OpenAI(base_url="http://localhost:8000/v1", api_key="-") completion = client.chat.completions.create( model="Qwen/Qwen2.5-3B-Instruct", messages=[ {"role": "user", "content": "Classify this sentiment: vLLM is wonderful!"} ], extra_body={"guided_choice": ["positive", "negative"]}, ) print(completion.choices[0].message.content)
Example output:
positive
2. Guided Regex
A guided regex constrains the output to match a regex pattern, which is useful for formats like email addresses.
completion = client.chat.completions.create( model="Qwen/Qwen2.5-3B-Instruct", messages=[ { "role": "user", "content": "Generate an example email address for Alan Turing at Enigma. End in .com.", } ], extra_body={"guided_regex": r"\w+@\w+\.com\n", "stop": ["\n"]}, ) print(completion.choices[0].message.content)
Example output:
alan.turing@enigma.com
3. Guided JSON
Guided JSON enforces a valid JSON format based on a schema, simplifying integration with other systems.
from pydantic import BaseModel from enum import Enum class CarType(str, Enum): sedan = "sedan" suv = "SUV" truck = "Truck" coupe = "Coupe" class CarDescription(BaseModel): brand: str model: str car_type: CarType json_schema = CarDescription.model_json_schema() completion = client.chat.completions.create( model="Qwen/Qwen2.5-3B-Instruct", messages=[ {"role": "user", "content": "Generate a JSON for the most iconic car from the 90s."} ], extra_body={"guided_json": json_schema}, ) print(completion.choices[0].message.content)
Example output:
{ "brand": "Toyota", "model": "Supra", "car_type": "coupe" }
4. Guided grammar
Guided grammar uses an Extended Backus-Naur Form (EBNF) grammar syntax to define complex output structures, such as SQL queries.
completion = client.chat.completions.create( model="Qwen/Qwen2.5-3B-Instruct", messages=[ {"role": "user", "content": "Generate a SQL query to find all users older than 30."} ], extra_body={ "guided_grammar": """ query ::= "SELECT" fields "FROM users WHERE" condition; fields ::= "name, age" | "*"; condition ::= "age >" number; number ::= [0-9]+; """ }, ) print(completion.choices[0].message.content)
Example output:
SELECT * FROM users WHERE age > 30;
Next steps
To start integrating structured outputs into your projects:
- Explore the documentation: Check out the official documentation for more examples and detailed explanations.
- Install vLLM locally: Set up the inference server on your local machine using the vLLM GitHub repository.
- Experiment with structured outputs: Try out different formats (choice, regex, JSON, grammar) and observe how they can simplify your workflow.
- Deploy in production: Once comfortable, deploy vLLM to your production environment and integrate it with your applications.
Structured outputs make LLMs not only powerful but also practical for real-world applications. Dive in and see what you can build!
Related
Artificial Intelligence and Machine Learning: What Are They and Why Are They Important?
Nov 12, 2020Closing the gap between High-Performance Computing (HPC) and artificial intelligence (AI)
Sep 15, 2023Demystifying AI, Machine Learning and Deep Learning
Nov 25, 2020Deploying a Small Language Model in HPE Private Cloud AI using a Jupyter Notebook
Feb 20, 2025
Distributed Tuning in Chapel with a Hyperparameter Optimization Example
Oct 9, 2024End-to-End Machine Learning Using Containerization
Feb 5, 2021
From data centers to centers of data: Navigating the pull of data gravity
May 9, 2025