GuideLLM benchmark options
A GuideLLM run accepts name, request_format, profile, constraints, and
exactly one data item.
Profiles
Use one profile per named run:
GuideLLM may add profiles without requiring a vLLM Optimizer release because profile fields are passed through. Consult its benchmark guide for version-specific fields.
Constraints
Stop after a request count:
Stop after a duration for each profile strategy:
Constraints can be combined and are passed through to GuideLLM.
A GuideLLM run constrained only by max_requests uses a one-hour hard cap when
timeouts.benchmark is omitted. Set it explicitly for longer workloads. A
request count does not provide a safe workload-duration estimate;
duration-constrained runs can use the derived timeout instead.
max_requests is a stopping condition, not a request-serialization setting.
Throughput, constant, and poisson profiles may issue requests concurrently;
GuideLLM drains in-flight requests before it finishes. Use
profile: {kind: synchronous} when each request must wait for the previous
response, or set max_concurrency: 1 where the selected profile supports it.
The vllm-opt CLI preserves GuideLLM's normal console and request-draining lifecycle.
Request formats
Choose the vLLM-compatible route required by the dataset and model:
The default is /v1/completions.